mirror of
https://github.com/Ed94/gencpp.git
synced 2025-06-16 19:51:47 -07:00
Added CodeSpecifiers::index_of for cpp, fix token bug with () operator in parse_operator_after_ret_type
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user