diff options
author | Nico Weber <thakis@chromium.org> | 2020-07-26 18:16:22 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-27 01:04:17 +0200 |
commit | 29bc97856456b7909ccf62c8796c715b18d84166 (patch) | |
tree | a3d38b9b5e2a81f2cc289084facf81d034a77ddb /Libraries/LibGUI/CppLexer.h | |
parent | c38b8d63f85ebd8168cb3c94e5e2ffefac68667d (diff) | |
download | serenity-29bc97856456b7909ccf62c8796c715b18d84166.zip |
CppLexer: Add token types for "^", "^="
Diffstat (limited to 'Libraries/LibGUI/CppLexer.h')
-rw-r--r-- | Libraries/LibGUI/CppLexer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Libraries/LibGUI/CppLexer.h b/Libraries/LibGUI/CppLexer.h index 8bd80c355d..6a69584a88 100644 --- a/Libraries/LibGUI/CppLexer.h +++ b/Libraries/LibGUI/CppLexer.h @@ -65,6 +65,8 @@ namespace GUI { __TOKEN(SlashEquals) \ __TOKEN(Percent) \ __TOKEN(PercentEquals) \ + __TOKEN(Caret) \ + __TOKEN(CaretEquals) \ __TOKEN(Equals) \ __TOKEN(EqualsEquals) \ __TOKEN(And) \ |