Prints an error for arguments that expected an argument but were not given one
| 105 | |
| 106 | // Prints an error for arguments that expected an argument but were not given one |
| 107 | void CliErrorExpectedOpt(String argument) |
| 108 | { |
| 109 | std::cout << "Error: value is required for '" << argument << "' but none was supplied" |
| 110 | << "\n\nFor more information, try '--help'" |
| 111 | << std::endl; |
| 112 | } |
| 113 | |
| 114 | void shutdown() override |
| 115 | { |