diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-09-28 10:34:31 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-09-28 10:34:31 +0200 |
commit | a3fe2a9791045a217c3f65bc059a8d4884fa8f17 (patch) | |
tree | 9edc3044f037ccdbc74b1ab56b8c719d5532ec1b /objective-c | |
parent | ICE-6773 Added test for C++ stack traces (diff) | |
download | ice-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.m | 2 |
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 |