1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-01 21:23:52 +00:00

Fix for spurious printout (#177)

This commit is contained in:
Henry Schreiner 2018-10-22 18:39:23 +02:00 committed by GitHub
parent 6bd31c392d
commit b683f4ed96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1414,7 +1414,6 @@ class App {
if(level < item.parents.size()) { if(level < item.parents.size()) {
App *subcom; App *subcom;
try { try {
std::cout << item.parents.at(level) << std::endl;
subcom = get_subcommand(item.parents.at(level)); subcom = get_subcommand(item.parents.at(level));
} catch(const OptionNotFound &) { } catch(const OptionNotFound &) {
return false; return false;