mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Remove some over-commenting for builtin_count_args
These comments were throwing warnings in Xcode
This commit is contained in:
parent
b485d95808
commit
7ec205d59c
1 changed files with 0 additions and 6 deletions
|
@ -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;){
|
||||
|
|
Loading…
Reference in a new issue