aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-08 22:39:45 +0000
committerDavid Robillard <d@drobilla.net>2010-12-08 22:39:45 +0000
commit9505e74e3a46eb0b5b1d2e0cce4d9a5092ebedc9 (patch)
treede7494695370b750b6d8a222acba30ff66f24f55 /src/resp.hpp
parentc3601526574d9f04779cea3a84c8b423e6b3fb26 (diff)
downloadresp-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/resp.hpp')
-rw-r--r--src/resp.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index 7dc9f16..a3117a0 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -721,7 +721,7 @@ struct Engine {
virtual CVal compileString(CEnv& cenv, const char* str) = 0;
virtual CVal compileCall(CEnv& cenv, CFunc f, const AType* fT, ValVec& args) = 0;
virtual CVal compilePrimitive(CEnv& cenv, const ATuple* prim) = 0;
- virtual CVal compileMatch(CEnv& cenv, const ATuple* match) = 0;
+ virtual CVal compileIsA(CEnv& cenv, CVal rtti, const ASymbol* tag) = 0;
virtual CVal compileGlobal(CEnv& cenv, const AType* t, const string& sym, CVal val) = 0;
virtual CVal compileGlobalGet(CEnv& cenv, const string& sym, CVal val) = 0;