aboutsummaryrefslogtreecommitdiff
path: root/src/tokenizer.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-02-06 23:33:41 +0000
committergingerBill <bill@gingerbill.org>2020-02-06 23:33:41 +0000
commit7d9600b740aa815c0eaa8a5424e7949a2ac2963e (patch)
treef547c874185ec323f60e773acee85619f67f9cbc /src/tokenizer.cpp
parent09e1cf0737e9fd950ca63f94fe3d9da62ef48ef9 (diff)
Ternary Expr; lbAddr extra; Phi node support
Diffstat (limited to 'src/tokenizer.cpp')
-rw-r--r--src/tokenizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp
index 19cb9b9aa..1854020f9 100644
--- a/src/tokenizer.cpp
+++ b/src/tokenizer.cpp
@@ -904,7 +904,7 @@ Token tokenizer_get_token(Tokenizer *t) {
}
if (token.kind == Token_Ident && token.string == "notin") {
- token.kind = Token_not_in;
+ token.kind = Token_not_in;
}
}