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
excludes
When using
opt_a->excludes( opt_b );
the help text shows the message 'Excludes: ..." just for opt_a, but not for opt_b, although the behavior is of course symmetrical.
opt_a
opt_b
As a workaround, adding opt_b->excludes( opt_a ); does the trick. But maybe this should not be necessary.
opt_b->excludes( opt_a );
The text was updated successfully, but these errors were encountered:
Fix #64 by auto-adding symmetric excludes
0a37019
0d7862b
268c26a
No branches or pull requests
When using
opt_a->excludes( opt_b );
the help text shows the message 'Excludes: ..." just for
opt_a
, but not foropt_b
, although the behavior is of course symmetrical.As a workaround, adding
opt_b->excludes( opt_a );
does the trick. But maybe this should not be necessary.The text was updated successfully, but these errors were encountered: