aboutsummaryrefslogtreecommitdiffstats
path: root/src/c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c.cpp')
-rw-r--r--src/c.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/c.cpp b/src/c.cpp
index afe1132..0e3596d 100644
--- a/src/c.cpp
+++ b/src/c.cpp
@@ -160,7 +160,7 @@ struct CEngine : public Engine {
CVal compileString(CEnv& cenv, const char* str);
CVal compilePrimitive(CEnv& cenv, const ATuple* prim);
CVal compileIf(CEnv& cenv, const ATuple* aif);
- CVal compileMatch(CEnv& cenv, const ATuple* match);
+ CVal compileIsA(CEnv& cenv, CVal rtti, const ASymbol* tag) { return NULL; }
CVal compileGlobal(CEnv& cenv, const AType* type, const string& sym, CVal val);
CVal compileGlobalGet(CEnv& cenv, const string& sym, CVal val);
@@ -266,12 +266,6 @@ CEngine::compileIf(CEnv& cenv, const ATuple* aif)
}
CVal
-CEngine::compileMatch(CEnv& cenv, const ATuple* match)
-{
- return NULL;
-}
-
-CVal
CEngine::compilePrimitive(CEnv& cenv, const ATuple* prim)
{
ATuple::const_iterator i = prim->begin();