Skip to content

Commit

Permalink
put it as 4.11 instead of 4.12 by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoLuis0 committed Oct 1, 2023
1 parent d5cacc5 commit 48efb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/engine/sc_man_scanner.re
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ std2:
'stop' { RET(TK_Stop); }
'null' { RET(TK_Null); }
'nullptr' { RET(ParseVersion >= MakeVersion(4, 9, 0)? TK_Null : TK_Identifier); }
'sealed' { RET(ParseVersion >= MakeVersion(4, 11, 0)? TK_Sealed : TK_Identifier); }
'sealed' { RET(ParseVersion >= MakeVersion(4, 12, 0)? TK_Sealed : TK_Identifier); }

'is' { RET(ParseVersion >= MakeVersion(1, 0, 0)? TK_Is : TK_Identifier); }
'replaces' { RET(ParseVersion >= MakeVersion(1, 0, 0)? TK_Replaces : TK_Identifier); }
Expand Down

0 comments on commit 48efb14

Please sign in to comment.