Macro parameter was not braced.
This commit is contained in:
parent
3c64c70ce2
commit
3244a61cac
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue