Cleanup: remove unused BLI_argsArgv

This commit is contained in:
Campbell Barton 2020-11-06 10:29:05 +11:00
parent 2bd8f7e059
commit c8f2ad0ab9
2 changed files with 0 additions and 6 deletions

View File

@ -73,7 +73,6 @@ void BLI_argsPrintArgDoc(struct bArgs *ba, const char *arg);
void BLI_argsPrintOtherDoc(struct bArgs *ba);
void BLI_argsPrint(struct bArgs *ba);
const char **BLI_argsArgv(struct bArgs *ba);
#ifdef __cplusplus
}

View File

@ -148,11 +148,6 @@ void BLI_argsPrint(struct bArgs *ba)
}
}
const char **BLI_argsArgv(struct bArgs *ba)
{
return ba->argv;
}
static bArgDoc *internalDocs(struct bArgs *ba,
const char *short_arg,
const char *long_arg,