Update c/frontend/preprocessor

This commit is contained in:
gingerBill
2021-01-06 11:22:15 +00:00
parent a07d199a48
commit bf183b2c2c
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ scan_escape :: proc(t: ^Tokenizer) -> bool {
n: int;
base, max: u32;
switch esc {
case 'a', 'b', 'e', 'f', 'n', 't', 'v', 'r', '\\', '\'', '\"':
case 'a', 'b', 'e', 'f', 'n', 't', 'v', 'r', '\\', '\'', '"':
advance_rune(t);
return true;