Remove some over-commenting for builtin_count_args

These comments were throwing warnings in Xcode
This commit is contained in:
ridiculousfish 2016-10-01 16:55:33 -07:00
parent b485d95808
commit 7ec205d59c

View file

@ -82,12 +82,6 @@ bool builtin_data_t::operator<(const builtin_data_t *other) const {
}
/// Counts the number of arguments in the specified null-terminated array
///
/// @param argv[]: argument list
///
/// @return
/// The numer of non-NULL elements in @param *argv before the first NULL.
///
int builtin_count_args(const wchar_t *const *argv) {
int argc;
for (argc = 1; argv[argc] != NULL;){