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/compile.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/compile.cpp')
-rw-r--r-- | src/compile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compile.cpp b/src/compile.cpp index 35fb042..282a7f0 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -122,7 +122,7 @@ compile_cons(CEnv& cenv, const ATuple* cons) throw() tlist.push_back(cenv.type(*i)); fields.push_back(resp_compile(cenv, *i)); } - return cenv.engine()->compileTup(cenv, type, resp_compile(cenv, type), fields); + return cenv.engine()->compileCons(cenv, type, resp_compile(cenv, type), fields); } static CVal |