fix travis; fix [lib/preprocessor.cpp:2772]: (style) The scope of the variable 'noprescan' can be reduced.
This commit is contained in:
parent
4cc4ebd5cd
commit
18d5a7317e
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue