diff options
author | David Robillard <d@drobilla.net> | 2010-12-03 00:52:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-03 00:52:49 +0000 |
commit | a2a6e8e4cefda1bb1cbdae53aab9d00b9a8688ca (patch) | |
tree | 29591923e314b9e11d111c5f402f50f50c2d17e4 /src/resp.cpp | |
parent | bbad3fe368b2086ec93f082a9436b1dfbc8f0e84 (diff) | |
download | resp-a2a6e8e4cefda1bb1cbdae53aab9d00b9a8688ca.tar.gz resp-a2a6e8e4cefda1bb1cbdae53aab9d00b9a8688ca.tar.bz2 resp-a2a6e8e4cefda1bb1cbdae53aab9d00b9a8688ca.zip |
Merge ACall and ATuple.
git-svn-id: http://svn.drobilla.net/resp/resp@285 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.cpp')
-rw-r--r-- | src/resp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resp.cpp b/src/resp.cpp index 478c738..611de0d 100644 --- a/src/resp.cpp +++ b/src/resp.cpp @@ -31,7 +31,7 @@ GC Object::pool(8 * 1024 * 1024); bool is_form(const AST* ast, const std::string& form) { - const ACall* call = ast->to<const ACall*>(); + const ATuple* call = ast->to<const ATuple*>(); if (!call) return false; @@ -45,7 +45,7 @@ is_form(const AST* ast, const std::string& form) bool is_primitive(const PEnv& penv, const AST* ast) { - const ACall* call = ast->to<const ACall*>(); + const ATuple* call = ast->to<const ATuple*>(); if (!call) return false; |