diff options
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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(); |