fix(command_line): Parse long arguments

This commit is contained in:
Michael Carlberg 2016-10-10 19:18:30 +02:00
parent b735f30cf6
commit 7efb2fc47a

View file

@ -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);
}
/**