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/c.cpp | |
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/c.cpp')
-rw-r--r-- | src/c.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -153,7 +153,7 @@ struct CEngine : public Engine { return varname; } - CVal compileTup(CEnv& cenv, const AType* type, CVal rtti, const vector<CVal>& fields); + CVal compileCons(CEnv& cenv, const AType* type, CVal rtti, const vector<CVal>& fields); CVal compileDot(CEnv& cenv, CVal tup, int32_t index); CVal compileLiteral(CEnv& cenv, const AST* lit); CVal compileString(CEnv& cenv, const char* str); @@ -186,7 +186,7 @@ resp_new_c_engine() ***************************************************************************/ CVal -CEngine::compileTup(CEnv& cenv, const AType* type, CVal rtti, const vector<CVal>& fields) +CEngine::compileCons(CEnv& cenv, const AType* type, CVal rtti, const vector<CVal>& fields) { return NULL; } |