diff options
author | David Robillard <d@drobilla.net> | 2010-12-08 22:39:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-08 22:39:45 +0000 |
commit | 9505e74e3a46eb0b5b1d2e0cce4d9a5092ebedc9 (patch) | |
tree | de7494695370b750b6d8a222acba30ff66f24f55 /src/c.cpp | |
parent | c3601526574d9f04779cea3a84c8b423e6b3fb26 (diff) | |
download | resp-9505e74e3a46eb0b5b1d2e0cce4d9a5092ebedc9.tar.gz resp-9505e74e3a46eb0b5b1d2e0cce4d9a5092ebedc9.tar.bz2 resp-9505e74e3a46eb0b5b1d2e0cce4d9a5092ebedc9.zip |
Remove Engine::compileMatch.
git-svn-id: http://svn.drobilla.net/resp/resp@318 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/c.cpp')
-rw-r--r-- | src/c.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -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(); |