reorder the processing of requirements and callbacks. #1186
Merged
phlptp merged 2 commits intoCLIUtils:mainfrom Jul 25, 2025
Merged
reorder the processing of requirements and callbacks. #1186phlptp merged 2 commits intoCLIUtils:mainfrom
phlptp merged 2 commits intoCLIUtils:mainfrom
Conversation
Collaborator
Author
|
Fixes #1184 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1186 +/- ##
===========================================
Coverage 100.00% 100.00%
===========================================
Files 17 17
Lines 4546 5172 +626
Branches 0 1060 +1060
===========================================
+ Hits 4546 5172 +626 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
VolkerChristian
added a commit
to SNodeC/CLI11
that referenced
this pull request
Sep 5, 2025
Some use cases require altering subcommand/option states (and thus the help output) based on a flag stored in the config file. In this case, running `_process_callbacks()` before `_process_help_flags()` is necessary. A new compile-time option `CLI11_USE_OLD_HELP_PROCESSING` restores this “old” behavior by executing callbacks prior to help flag processing. Extends CLIUtils#1186
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Check the requirements first.
Previously the callbacks were done first, but with custom callbacks this cause side effects unexpectedly.