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) != '|') \
|
if (*(p) != '|') \
|
||||||
return false; \
|
return false; \
|
||||||
++(p); \
|
++(p); \
|
||||||
ismulticomp = (*(p) && *(p) != ' '); \
|
(ismulticomp) = (*(p) && *(p) != ' '); \
|
||||||
continue; \
|
continue; \
|
||||||
} \
|
} \
|
||||||
if (*(p) == '|') { \
|
if (*(p) == '|') { \
|
||||||
while (*(p) && *(p) != ' ') \
|
while (*(p) && *(p) != ' ') \
|
||||||
++(p); \
|
++(p); \
|
||||||
} \
|
} \
|
||||||
ismulticomp = false; \
|
(ismulticomp) = false; \
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Token::Match(const Token *tok, const char pattern[], unsigned int varid)
|
bool Token::Match(const Token *tok, const char pattern[], unsigned int varid)
|
||||||
|
|
Loading…
Reference in New Issue