We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35146f0 commit ca2201eCopy full SHA for ca2201e
examples/subcommands.cpp
@@ -25,8 +25,7 @@ int main(int argc, char **argv) {
25
CLI11_PARSE(app, argc, argv);
26
27
std::cout << "Working on --file from start: " << file << '\n';
28
- std::cout << "Working on --count from stop: " << s->count() << ", direct count: " << stop->count("--count")
29
- << '\n';
+ std::cout << "Working on --count from stop: " << s->count() << ", direct count: " << stop->count("--count") << '\n';
30
std::cout << "Count of --random flag: " << app.count("--random") << '\n';
31
for(auto *subcom : app.get_subcommands())
32
std::cout << "Subcommand: " << subcom->get_name() << '\n';
0 commit comments