Skip spaces around macro arguments

This commit is contained in:
Jim Paris 2018-05-17 00:06:49 -04:00
parent a7281930c5
commit 872d8d49e9
1 changed files with 1 additions and 0 deletions

View File

@ -244,6 +244,7 @@ static bool try_expand_macro(std::set<std::string> &defines_with_args,
args.push_back(std::string());
while (1)
{
skip_spaces();
tok = next_token(true);
if (tok == ")" || tok == "}" || tok == "]")
level--;