fix travis; fix [lib/preprocessor.cpp:2772]: (style) The scope of the variable 'noprescan' can be reduced.

This commit is contained in:
Matthias Krüger 2016-07-19 17:28:31 +02:00
parent 4cc4ebd5cd
commit 18d5a7317e
1 changed files with 1 additions and 1 deletions

View File

@ -2769,11 +2769,11 @@ public:
else {
const std::vector<std::string> givenparams = expandInnerMacros(params2, macros);
bool noprescan = false;
const Token *tok = tokens();
while (tok && tok->str() != ")")
tok = tok->next();
if (tok) {
bool noprescan = false;
bool optcomma = false;
while (nullptr != (tok = tok->next())) {
std::string str = tok->str();