aboutsummaryrefslogtreecommitdiffstats
path: root/src/c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c.cpp')
-rw-r--r--src/c.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/c.cpp b/src/c.cpp
index d139c35..66a4963 100644
--- a/src/c.cpp
+++ b/src/c.cpp
@@ -52,7 +52,6 @@ struct CEngine : public Engine {
CVal compileGlobalSet(CEnv& cenv, const string& s, CVal v, const AST* t);
CVal compileGlobalGet(CEnv& cenv, const string& s, CVal v);
CVal compileIf(CEnv& cenv, const AST* cond, const AST* then, const AST* aelse);
- CVal compileIsA(CEnv& cenv, CVal rtti, CVal tag);
CVal compileLiteral(CEnv& cenv, const AST* lit);
CVal compilePrimitive(CEnv& cenv, const ATuple* prim);
CVal compileString(CEnv& cenv, const char* str);
@@ -265,12 +264,6 @@ CEngine::compileIf(CEnv& cenv, const ATuple* aif)
#endif
CVal
-CEngine::compileIsA(CEnv& cenv, CVal rtti, CVal tag)
-{
- return NULL;
-}
-
-CVal
CEngine::compilePrimitive(CEnv& cenv, const ATuple* prim)
{
ATuple::const_iterator i = prim->begin();