Added CodeSpecifiers::index_of for cpp, fix token bug with () operator in parse_operator_after_ret_type

This commit is contained in:
2025-02-15 21:22:33 -05:00
parent ef72d27f3e
commit 727b54c341
2 changed files with 4 additions and 0 deletions

View File

@ -2390,7 +2390,10 @@ CodeOperator parse_operator_after_ret_type(
case '(':
{
if ( currtok.Text.Ptr[1] == ')' )
{
op = Op_FunctionCall;
eat(Tok_Paren_Open);
}
else
op = Op_Invalid;