ui: removed clang warnings from console
* disabled clang warnings to be dumped into the console * changed logging type of storage stats from WARNING to INFO
This commit is contained in:
@@ -359,7 +359,7 @@ void PersistentStorage::logStats() const
|
|||||||
ss << "\t" << stats.errorCount.total << " Errors\n";
|
ss << "\t" << stats.errorCount.total << " Errors\n";
|
||||||
ss << "\t" << stats.errorCount.fatal << " Fatal Errors\n";
|
ss << "\t" << stats.errorCount.fatal << " Fatal Errors\n";
|
||||||
|
|
||||||
LOG_WARNING(ss.str());
|
LOG_INFO(ss.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
void PersistentStorage::startParsing()
|
void PersistentStorage::startParsing()
|
||||||
|
|||||||
@@ -106,6 +106,9 @@ std::vector<std::string> CxxParser::getCommandlineArgumentsEssential(const Argum
|
|||||||
// The option -c signals that no executable is built.
|
// The option -c signals that no executable is built.
|
||||||
args.push_back("-c");
|
args.push_back("-c");
|
||||||
|
|
||||||
|
// The option -w disables all warnings.
|
||||||
|
args.push_back("-w");
|
||||||
|
|
||||||
args.insert(args.begin(), arguments.compilerFlags.begin(), arguments.compilerFlags.end());
|
args.insert(args.begin(), arguments.compilerFlags.begin(), arguments.compilerFlags.end());
|
||||||
|
|
||||||
for (const FilePath& path : arguments.headerSearchPaths)
|
for (const FilePath& path : arguments.headerSearchPaths)
|
||||||
|
|||||||
Reference in New Issue
Block a user