diff options
Diffstat (limited to 'MLKCompiledClosure.h')
-rw-r--r-- | MLKCompiledClosure.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MLKCompiledClosure.h b/MLKCompiledClosure.h index a4498d2..53267b2 100644 --- a/MLKCompiledClosure.h +++ b/MLKCompiledClosure.h @@ -27,8 +27,9 @@ @interface MLKCompiledClosure : NSObject <MLKFuncallable> { int _dataLength; - id (*_code)(); + id (**_code)(); id *_data; + BOOL _ownPointer; // do we own the _code pointer cell? } -(id) initWithCode:(void *)code |