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
In method App::_parse : RequiredError(opt->single_name() + " is required");
In class RequiredError : RequiredError(std::string name) : RequiredError(name + " is required", ExitCodes::RequiredError)
It would make sense to remove the "is required" string from App::_parse method and let it in the RequiredError() class.
The text was updated successfully, but these errors were encountered:
CLIUtils#76 | Remove "is required" string passed as an argument to Re…
9de1a88
…quiredError() constructor to avoid double printing. The string "is required" is already added internally by RequiredError() class.
#76 | Remove "is required" string passed as an argument to RequiredEr…
4e62a0a
…ror() constructor to avoid double printing. The string "is required" is already added internally by RequiredError() class.
Should be fixed, thanks!
Sorry, something went wrong.
Fixed in the just-released 1.4.
No branches or pull requests
In method App::_parse :
RequiredError(opt->single_name() + " is required");
In class RequiredError :
RequiredError(std::string name) : RequiredError(name + " is required", ExitCodes::RequiredError)
It would make sense to remove the "is required" string from App::_parse method and let it in the RequiredError() class.
The text was updated successfully, but these errors were encountered: