We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clargs::parser p; p.add('a', "aaa", "parametrized arg", [](std::string_view v){}); p.parse(...);
run from cmd line as:
exec --aaa
Result: std::bad_function_call is thrown.
std::bad_function_call
Expected result: std::invalid_argument is thrown saying that the arg requires a parameter.
std::invalid_argument
Note: running as
exec --aaa=1
gives no error
The text was updated successfully, but these errors were encountered:
igagis
No branches or pull requests
run from cmd line as:
Result:
std::bad_function_call
is thrown.Expected result:
std::invalid_argument
is thrown saying that the arg requires a parameter.Note:
running as
gives no error
The text was updated successfully, but these errors were encountered: