aboutsummaryrefslogtreecommitdiffstats
path: root/src/parse.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-03 00:35:28 +0000
committerDavid Robillard <d@drobilla.net>2010-12-03 00:35:28 +0000
commitbbad3fe368b2086ec93f082a9436b1dfbc8f0e84 (patch)
tree941799ecdfeaeb15d3235ec85c6678b07a73e8d8 /src/parse.cpp
parent35e977e8786b667155bf6b186bebb9c0938fb587 (diff)
downloadresp-bbad3fe368b2086ec93f082a9436b1dfbc8f0e84.tar.gz
resp-bbad3fe368b2086ec93f082a9436b1dfbc8f0e84.tar.bz2
resp-bbad3fe368b2086ec93f082a9436b1dfbc8f0e84.zip
Remove AFn.
git-svn-id: http://svn.drobilla.net/resp/resp@284 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/parse.cpp')
-rw-r--r--src/parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.cpp b/src/parse.cpp
index 83a4934..35765a9 100644
--- a/src/parse.cpp
+++ b/src/parse.cpp
@@ -154,7 +154,7 @@ parseFn(PEnv& penv, const AST* exp, void* arg)
while (a != texp->end())
ret.push_back(penv.parse(*a++));
ret.head->loc = exp->loc;
- return new AFn(ret.head);
+ return new ACall(ret.head);
}
inline AST*