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