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
If excess positional arguments are provided the parser does not raise an exception.
struct FileOptions { // Positional arguments // ./main <input_file> <output_file> std::string input_file; std::string output_file; }; STRUCTOPT(FileOptions, input_file, output_file);
Executing ./main file1 file2 file3 does not raise an exception.
./main file1 file2 file3
The text was updated successfully, but these errors were encountered:
813a8d0
p-ranav
No branches or pull requests
If excess positional arguments are provided the parser does not raise an exception.
Executing
./main file1 file2 file3
does not raise an exception.The text was updated successfully, but these errors were encountered: