From a2a6e8e4cefda1bb1cbdae53aab9d00b9a8688ca Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 3 Dec 2010 00:52:49 +0000 Subject: Merge ACall and ATuple. git-svn-id: http://svn.drobilla.net/resp/resp@285 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/repl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/repl.cpp') diff --git a/src/repl.cpp b/src/repl.cpp index 15e263f..4fdbb53 100644 --- a/src/repl.cpp +++ b/src/repl.cpp @@ -114,7 +114,7 @@ eval(CEnv& cenv, Cursor& cursor, istream& is, bool execute) // Compile top-level (lifted) functions Code exprs; for (Code::const_iterator i = lifted.begin(); i != lifted.end(); ++i) { - const ACall* call = (*i)->to(); + const ATuple* call = (*i)->to(); if (call && is_form(call, "def") && is_form(call->list_ref(2), "fn")) { val = resp_compile(cenv, call); } else { -- cgit v1.2.1