summaryrefslogtreecommitdiff
path: root/MLKForm.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-12 11:22:58 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-12 11:22:58 +0200
commitefa4eaca17fd6c1e19210f069fe9963c185fa200 (patch)
tree36852cdd3a47cfda2d3be3c004b6d8e9a539e337 /MLKForm.m
parent274b31d8f18e1003c61d5add875c6fdc72419ba6 (diff)
LLVM compiler: Have %LAMBDA forms return closures rather than function pointers.
Diffstat (limited to 'MLKForm.m')
-rw-r--r--MLKForm.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKForm.m b/MLKForm.m
index 19b8dda..e78a790 100644
--- a/MLKForm.m
+++ b/MLKForm.m
@@ -915,7 +915,7 @@
self = [super complete];
LASSIGN (_type, [_form car]);
- LASSIGN (_arguments, [_form cdr] ? [[_form cdr] array] : [NSArray array]);
+ LASSIGN (_arguments, [_form cdr] ? (id)[[_form cdr] array] : (id)[NSArray array]);
return self;
}