remove unused param to arg parser

This commit is contained in:
John
2023-10-01 14:54:27 +02:00
parent acc6eddbba
commit c71b1daf74
9 changed files with 118 additions and 118 deletions
-1
View File
@@ -37,7 +37,6 @@ typedef struct argDef {
const char* valueName; //!< the optional argument value name
int flags; //!< flags for the argument, bit combination of @a ArgFlag
const char* help; //!< help text (mandatory)
int unused; //!< currently unused (kept for compatibility to argp)
} argDef;
struct argParseOpt;