Tokenizer: Only show 'failed to instantiate template' debug messages if the --debug-warnings has been given

This commit is contained in:
Daniel Marjamäki 2010-11-08 18:01:28 +01:00
parent 27b7638901
commit 21ec772e31
1 changed files with 13 additions and 12 deletions

View File

@ -2652,7 +2652,8 @@ void Tokenizer::simplifyTemplates()
if (type2.empty() || type.size() != types2.size()) if (type2.empty() || type.size() != types2.size())
{ {
#ifndef NDEBUG if (_settings && _settings->debugwarnings)
{
std::list<ErrorLogger::ErrorMessage::FileLocation> locationList; std::list<ErrorLogger::ErrorMessage::FileLocation> locationList;
ErrorLogger::ErrorMessage::FileLocation loc; ErrorLogger::ErrorMessage::FileLocation loc;
loc.line = tok2->linenr(); loc.line = tok2->linenr();
@ -2662,10 +2663,10 @@ void Tokenizer::simplifyTemplates()
const ErrorLogger::ErrorMessage errmsg(locationList, const ErrorLogger::ErrorMessage errmsg(locationList,
Severity::debug, Severity::debug,
"Failed to instantiate template. The checking continues anyway.", "Failed to instantiate template. The checking continues anyway.",
"templateInstantiate"); "debug");
_errorLogger->reportErr(errmsg); _errorLogger->reportErr(errmsg);
#endif }
if (type2.empty()) if (type2.empty())
continue; continue;
break; break;