From e759ca41e4ba831279b1495c6713d79ad10ab6f9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 9 Dec 2010 01:40:52 +0000 Subject: ValVec => CVals. git-svn-id: http://svn.drobilla.net/resp/resp@322 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/resp.hpp | 6 +++--- 1 file 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 ValVec; + typedef const vector 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; -- cgit v1.2.1