aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;