summaryrefslogtreecommitdiff
path: root/objective-c
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2015-09-28 10:34:31 +0200
committerBenoit Foucher <benoit@zeroc.com>2015-09-28 10:34:31 +0200
commita3fe2a9791045a217c3f65bc059a8d4884fa8f17 (patch)
tree9edc3044f037ccdbc74b1ab56b8c719d5532ec1b /objective-c
parentICE-6773 Added test for C++ stack traces (diff)
downloadice-a3fe2a9791045a217c3f65bc059a8d4884fa8f17.tar.bz2
ice-a3fe2a9791045a217c3f65bc059a8d4884fa8f17.tar.xz
ice-a3fe2a9791045a217c3f65bc059a8d4884fa8f17.zip
Fixed test compilation failure with ARC
Diffstat (limited to 'objective-c')
-rw-r--r--objective-c/test/Ice/acm/TestI.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/objective-c/test/Ice/acm/TestI.m b/objective-c/test/Ice/acm/TestI.m
index b0263bcb766..48d639bd69b 100644
--- a/objective-c/test/Ice/acm/TestI.m
+++ b/objective-c/test/Ice/acm/TestI.m
@@ -200,6 +200,6 @@
ConnectionCallbackI* callback = [ConnectionCallbackI new];
[current.con setCallback:callback];
[callback waitForCount:count];
- [callback release];
+ ICE_RELEASE(release);
}
@end