Merge pull request #283 from Dmitry-Me/bracemacroparameter

Macro parameter was not braced.
This commit is contained in:
Daniel Marjamäki 2014-04-03 07:22:34 +02:00
commit dcc245be9e
1 changed files with 2 additions and 2 deletions

View File

@ -540,14 +540,14 @@ int Token::firstWordLen(const char *str)
if (*(p) != '|') \
return false; \
++(p); \
ismulticomp = (*(p) && *(p) != ' '); \
(ismulticomp) = (*(p) && *(p) != ' '); \
continue; \
} \
if (*(p) == '|') { \
while (*(p) && *(p) != ' ') \
++(p); \
} \
ismulticomp = false; \
(ismulticomp) = false; \
}
bool Token::Match(const Token *tok, const char pattern[], unsigned int varid)