diff options
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 |