diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-08-26 12:43:36 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-08-26 12:43:36 -0400 |
| commit | 73a7747a9cfb180a92fa0d98f9387d5ad1f47fd2 (patch) | |
| tree | 5b26647eecc6c7f709464678e48a300a8789d473 /src/tokenizer.cpp | |
| parent | 6569bfc85e7de5229dd5b665e84070970d28653d (diff) | |
| download | zig-73a7747a9cfb180a92fa0d98f9387d5ad1f47fd2.tar.gz zig-73a7747a9cfb180a92fa0d98f9387d5ad1f47fd2.zip | |
fix some compile error regressions
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 84f3f2c0ec..9c9effcb10 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -841,7 +841,7 @@ void tokenize(Buf *buf, Tokenization *out) { case TokenizeStateSawAmpersand: switch (c) { case '&': - tokenize_error(&t, "`&&` is invalid. Note that `and` is boolean AND."); + tokenize_error(&t, "`&&` is invalid. Note that `and` is boolean AND"); break; case '=': set_token_id(&t, t.cur_tok, TokenIdBitAndEq); |
