summaryrefslogtreecommitdiff
path: root/MLKCons.m
diff options
context:
space:
mode:
Diffstat (limited to 'MLKCons.m')
-rw-r--r--MLKCons.m8
1 files changed, 7 insertions, 1 deletions
diff --git a/MLKCons.m b/MLKCons.m
index e9e6360..f1db7e6 100644
--- a/MLKCons.m
+++ b/MLKCons.m
@@ -37,5 +37,11 @@
{
ASSIGN (_cdr, value);
}
-@end
+-(void) dealloc
+{
+ RELEASE (_car);
+ RELEASE (_cdr);
+ [super dealloc];
+}
+@end