1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

CppLexer: Add token types for "^", "^="

This commit is contained in:
Nico Weber 2020-07-26 18:16:22 -04:00 committed by Andreas Kling
parent c38b8d63f8
commit 29bc978564
2 changed files with 6 additions and 0 deletions

View file

@ -65,6 +65,8 @@ namespace GUI {
__TOKEN(SlashEquals) \
__TOKEN(Percent) \
__TOKEN(PercentEquals) \
__TOKEN(Caret) \
__TOKEN(CaretEquals) \
__TOKEN(Equals) \
__TOKEN(EqualsEquals) \
__TOKEN(And) \