aboutsummaryrefslogtreecommitdiffstats
path: root/src/c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c.cpp')
-rw-r--r--src/c.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/c.cpp b/src/c.cpp
index 6493ff3..19cc1d5 100644
--- a/src/c.cpp
+++ b/src/c.cpp
@@ -51,7 +51,6 @@ llType(const AType* t)
if (t->head()->str() == "Float") return new string("float");
if (t->head()->str() == "String") return new string("char*");
if (t->head()->str() == "Quote") return new string("char*");
- if (t->head()->str() == "Lexeme") return new string("char*");
throw Error(t->loc, string("Unknown primitive type `") + t->str() + "'");
} else if (t->kind == AType::EXPR && t->head()->str() == "Fn") {
AType::const_iterator i = t->begin();