diff options
author | David Robillard <d@drobilla.net> | 2010-12-08 01:26:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-08 01:26:35 +0000 |
commit | 410466cdd374f1324663af2fdd5e3fc1dceccde7 (patch) | |
tree | 76069a0cbfbf94ba1788c903476cb45512f622b5 /src/resp.hpp | |
parent | 521e800dd89a343cb5b779c7a4f6c56e6437bcb9 (diff) | |
download | resp-410466cdd374f1324663af2fdd5e3fc1dceccde7.tar.gz resp-410466cdd374f1324663af2fdd5e3fc1dceccde7.tar.bz2 resp-410466cdd374f1324663af2fdd5e3fc1dceccde7.zip |
compileTup => compileCons
git-svn-id: http://svn.drobilla.net/resp/resp@310 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 ae7bc11..3cccd30 100644 --- a/src/resp.hpp +++ b/src/resp.hpp @@ -706,7 +706,7 @@ struct Engine { virtual void finishFunction(CEnv& cenv, CFunc f, CVal ret) = 0; virtual void eraseFunction(CEnv& cenv, CFunc f) = 0; - virtual CVal compileTup(CEnv& cenv, const AType* t, CVal rtti, ValVec& f) = 0; + virtual CVal compileCons(CEnv& cenv, const AType* t, CVal rtti, ValVec& f) = 0; virtual CVal compileDot(CEnv& cenv, CVal tup, int32_t index) = 0; virtual CVal compileLiteral(CEnv& cenv, const AST* lit) = 0; virtual CVal compileString(CEnv& cenv, const char* str) = 0; |