Skip to content

Commit

Permalink
Handle 'long long' in rflParser::readRawType
Browse files Browse the repository at this point in the history
  • Loading branch information
Sainan committed Oct 30, 2024
1 parent 7ced0a2 commit 111df91
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions soup/rflParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ NAMESPACE_SOUP
str.push_back(' ');
str.append(readLiteral());
}
if ((i - 1)->val.getString() == "long" && peekLiteral() == "long")
{
str.push_back(' ');
str.append(readLiteral());
}
return str;
}

Expand Down

0 comments on commit 111df91

Please sign in to comment.