summaryrefslogtreecommitdiff
path: root/objective-c/test/Ice/operations/OperationsTest.ice
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-05-29 11:07:35 +0200
committerJose <jose@zeroc.com>2017-05-29 11:07:35 +0200
commit6e34ff0821df068dc84f29876b307a4458237b12 (patch)
tree844d613b6b75fb3cedd5a6d5dd54b13c1aa7a819 /objective-c/test/Ice/operations/OperationsTest.ice
parentUpdate favicon (diff)
downloadice-6e34ff0821df068dc84f29876b307a4458237b12.tar.bz2
ice-6e34ff0821df068dc84f29876b307a4458237b12.tar.xz
ice-6e34ff0821df068dc84f29876b307a4458237b12.zip
Fix (ICE-7923) - suppress deprecation warnings
Diffstat (limited to 'objective-c/test/Ice/operations/OperationsTest.ice')
-rw-r--r--objective-c/test/Ice/operations/OperationsTest.ice4
1 files changed, 2 insertions, 2 deletions
diff --git a/objective-c/test/Ice/operations/OperationsTest.ice b/objective-c/test/Ice/operations/OperationsTest.ice
index 6029218c450..0186627b3b7 100644
--- a/objective-c/test/Ice/operations/OperationsTest.ice
+++ b/objective-c/test/Ice/operations/OperationsTest.ice
@@ -308,14 +308,14 @@ interface MyClass
struct MyStruct1
{
string tesT; // Same name as the enclosing module
- MyClass myClass; // Same name as an already defined class
+ MyClass* myClass; // Same name as an already defined class
string myStruct1; // Same name as the enclosing struct
}
class MyClass1
{
string tesT; // Same name as the enclosing module
- MyClass myClass; // Same name as an already defined class
+ MyClass* myClass; // Same name as an already defined class
string myClass1; // Same name as the enclosing class
}