aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-09 01:40:52 +0000
committerDavid Robillard <d@drobilla.net>2010-12-09 01:40:52 +0000
commite759ca41e4ba831279b1495c6713d79ad10ab6f9 (patch)
tree70d29bee0ecf86ad7b70d12c138870f09b00560d
parent152c910f89e078099a5aba6d7d6f7fa28ceea2c3 (diff)
downloadresp-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.hpp6
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;