summaryrefslogtreecommitdiff
path: root/src/pre_lexer.mll
diff options
context:
space:
mode:
authorKathy Gray2014-02-05 18:33:22 +0000
committerKathy Gray2014-02-05 18:33:22 +0000
commit1381969c9f9a3aa4a40747aea784bf0bb72974c9 (patch)
treeebd6e3bbe806cb4edcadf9e660714f04cab45c01 /src/pre_lexer.mll
parent85953dee9956667c544ff1ce83c6b45d26ea7b44 (diff)
Fix type id parsing error ans associated type checking bugs in scattereds
Diffstat (limited to 'src/pre_lexer.mll')
-rw-r--r--src/pre_lexer.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pre_lexer.mll b/src/pre_lexer.mll
index ae336f0f..5f55cc72 100644
--- a/src/pre_lexer.mll
+++ b/src/pre_lexer.mll
@@ -95,7 +95,7 @@ let kw_table =
("then", (fun x -> Other));
("true", (fun x -> Other));
("Type", (fun x -> Other));
- ("typedef", (fun x -> Other));
+ ("typedef", (fun x -> Typedef));
("undefined", (fun x -> Other));
("union", (fun x -> Other));
("with", (fun x -> Other));