CppLexer: Add token type for "*="

This commit is contained in:
Nico Weber 2020-07-26 13:35:47 -04:00 committed by Andreas Kling
commit 5a36d8acb8
Notes: sideshowbarker 2024-07-19 04:35:55 +09:00
2 changed files with 13 additions and 1 deletions

View file

@ -45,6 +45,7 @@ namespace GUI {
__TOKEN(RightBracket) \
__TOKEN(Comma) \
__TOKEN(Asterisk) \
__TOKEN(AsteriskEquals) \
__TOKEN(Semicolon) \
__TOKEN(DoubleQuotedString) \
__TOKEN(SingleQuotedString) \