update/cleanup function pointers

This commit is contained in:
Ricardo Luís Vaz Silva 2023-10-09 13:44:20 -03:00 committed by Christoph Oelckers
commit 0ce4b3e7fb
4 changed files with 7 additions and 8 deletions

View file

@ -169,7 +169,7 @@ std2:
'map' { RET(TK_Map); }
'mapiterator' { RET(TK_MapIterator); }
'array' { RET(TK_Array); }
'function' { RET(ParseVersion >= MakeVersion(4, 11, 0)? TK_FunctionType : TK_Identifier); }
'function' { RET(ParseVersion >= MakeVersion(4, 12, 0)? TK_FunctionType : TK_Identifier); }
'in' { RET(TK_In); }
'sizeof' { RET(TK_SizeOf); }
'alignof' { RET(TK_AlignOf); }