1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-07 07:33:51 +00:00

Fixes for windows warnings

This commit is contained in:
Henry Fredrick Schreiner 2017-03-03 21:26:03 -05:00
parent f203f4c122
commit 94d3ce0e17
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ protected:
///@} ///@}
/// Special private constructor for subcommand /// Special private constructor for subcommand
App(std::string description_, bool help, detail::enabler dummy_param) App(std::string description_, bool help, detail::enabler)
: description_(description_) { : description_(description_) {
if(help) if(help)

View File

@ -23,7 +23,7 @@ struct ini_ret_t {
std::vector<std::string> inputs; std::vector<std::string> inputs;
/// Current parent level /// Current parent level
int level = 0; size_t level = 0;
/// Return parent or empty string, based on level /// Return parent or empty string, based on level
/// ///