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/resp.hpp | |
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/resp.hpp')
-rw-r--r-- | src/resp.hpp | 2 |
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; |