summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/CppLexer.h
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-07-26 18:16:22 -0400
committerAndreas Kling <kling@serenityos.org>2020-07-27 01:04:17 +0200
commit29bc97856456b7909ccf62c8796c715b18d84166 (patch)
treea3d38b9b5e2a81f2cc289084facf81d034a77ddb /Libraries/LibGUI/CppLexer.h
parentc38b8d63f85ebd8168cb3c94e5e2ffefac68667d (diff)
downloadserenity-29bc97856456b7909ccf62c8796c715b18d84166.zip
CppLexer: Add token types for "^", "^="
Diffstat (limited to 'Libraries/LibGUI/CppLexer.h')
-rw-r--r--Libraries/LibGUI/CppLexer.h2
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) \