diff options
author | David Robillard <d@drobilla.net> | 2010-12-09 01:40:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-09 01:40:52 +0000 |
commit | e759ca41e4ba831279b1495c6713d79ad10ab6f9 (patch) | |
tree | 70d29bee0ecf86ad7b70d12c138870f09b00560d | |
parent | 152c910f89e078099a5aba6d7d6f7fa28ceea2c3 (diff) | |
download | resp-e759ca41e4ba831279b1495c6713d79ad10ab6f9.tar.gz resp-e759ca41e4ba831279b1495c6713d79ad10ab6f9.tar.bz2 resp-e759ca41e4ba831279b1495c6713d79ad10ab6f9.zip |
ValVec => CVals.
git-svn-id: http://svn.drobilla.net/resp/resp@322 ad02d1e2-f140-0410-9f75-f8b11f17cedd
-rw-r--r-- | src/resp.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resp.hpp b/src/resp.hpp index 1d889e8..aa4d624 100644 --- a/src/resp.hpp +++ b/src/resp.hpp @@ -700,7 +700,7 @@ typedef void* IfState; struct Engine { virtual ~Engine() {} - typedef const vector<CVal> ValVec; + typedef const vector<CVal> CVals; virtual CFunc startFn(CEnv& cenv, const std::string& name, @@ -715,8 +715,8 @@ struct Engine { virtual void finishFn(CEnv& cenv, CFunc f, CVal ret) = 0; virtual void eraseFn(CEnv& cenv, CFunc f) = 0; - virtual CVal compileCall(CEnv& cenv, CFunc f, const AType* fT, ValVec& args) = 0; - virtual CVal compileCons(CEnv& cenv, const AType* t, CVal rtti, ValVec& f) = 0; + virtual CVal compileCall(CEnv& cenv, CFunc f, const AType* fT, CVals& args) = 0; + virtual CVal compileCons(CEnv& cenv, const AType* t, CVal rtti, CVals& f) = 0; virtual CVal compileDot(CEnv& cenv, CVal tup, int32_t index) = 0; virtual CVal compileGlobalSet(CEnv& cenv, const string& s, CVal v, const AType* t) = 0; virtual CVal compileGlobalGet(CEnv& cenv, const string& s, CVal v) = 0; |