summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp/AST.h
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2021-03-31 18:19:17 +0300
committerAndreas Kling <kling@serenityos.org>2021-04-06 21:51:58 +0200
commitfe4122bbae30bec0c80212635e1d330f76bc52b3 (patch)
tree33f36490648e89eeef1607a390627adc8c1ca99b /Userland/Libraries/LibCpp/AST.h
parent68e9a05472df4602b99647f8f73cab6942a8c5b6 (diff)
downloadserenity-fe4122bbae30bec0c80212635e1d330f76bc52b3.zip
LibCpp: Support parsing '!=" operator
Diffstat (limited to 'Userland/Libraries/LibCpp/AST.h')
-rw-r--r--Userland/Libraries/LibCpp/AST.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCpp/AST.h b/Userland/Libraries/LibCpp/AST.h
index 9634d40ebc..2fd1353451 100644
--- a/Userland/Libraries/LibCpp/AST.h
+++ b/Userland/Libraries/LibCpp/AST.h
@@ -418,7 +418,8 @@ enum class BinaryOp {
BitwiseXor,
LeftShift,
RightShift,
- EqualsEquals
+ EqualsEquals,
+ NotEqual,
};
class BinaryExpression : public Expression {