Fixed initializerList warning

This commit is contained in:
Daniel Marjamäki 2020-04-26 15:24:25 +02:00
parent 6d7dd7400d
commit 72e0a4be29
1 changed files with 5 additions and 5 deletions

View File

@ -94,17 +94,17 @@ public:
/** Is the 'configuration checking' wanted? */
bool checkConfiguration;
/**
* Check code in the headers, this is on by default but can
* be turned off to save CPU */
bool checkHeaders;
/** Check for incomplete info in library files? */
bool checkLibrary;
/** @brief List of selected Visual Studio configurations that should be checks */
std::list<std::string> checkVsConfigs;
/**
* Check code in the headers, this is on by default but can
* be turned off to save CPU */
bool checkHeaders;
/** @brief check unknown function return values */
std::set<std::string> checkUnknownFunctionReturn;