fix(command_line): Parse long arguments
This commit is contained in:
parent
b735f30cf6
commit
7efb2fc47a
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ namespace command_line {
|
|||
* Compare option with both versions
|
||||
*/
|
||||
auto is(string option, string opt_short, string opt_long) const {
|
||||
return is_short(option, opt_short) || is_long(opt_short, opt_long);
|
||||
return is_short(option, opt_short) || is_long(option, opt_long);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue