Make 'const' the new variable 'funcName'.

This commit is contained in:
Edoardo Prezioso 2012-04-03 22:51:56 +02:00
parent 77d9ed1877
commit b90d9c8a19
1 changed files with 1 additions and 1 deletions

View File

@ -4880,7 +4880,7 @@ bool Tokenizer::simplifyFunctionParameters()
Token * tokparam = NULL;
//take count of the function name..
std::string funcName(tok->str());
const std::string funcName(tok->str());
//floating token used to check for parameters
Token *tok1 = tok;