Replace std::to_string, to hopefully make appveyor happier

This commit is contained in:
Daniel Marjamäki 2016-07-20 20:43:32 +02:00
parent 63493c229d
commit 4ceba79f7f
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ unsigned int CppCheck::processFile(const std::string& filename, std::istream& fi
continue;
const std::string code = "#line " +
std::to_string(tok->location.line) +
MathLib::toString(tok->location.line) +
'\"' + tok->location.file() + "\'\n" +
directive;