diff options
author | Joe George <joe@zeroc.com> | 2016-07-18 14:32:13 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-07-18 14:32:13 -0400 |
commit | 36daf1738a84814a05fa0aafa59b8fdcfae0b1e6 (patch) | |
tree | 5415eae44d578053eef1a8de99a7a1462d8798a7 /cpp/test/Ice/objects/TestI.cpp | |
parent | Update to latest builder (diff) | |
download | ice-36daf1738a84814a05fa0aafa59b8fdcfae0b1e6.tar.bz2 ice-36daf1738a84814a05fa0aafa59b8fdcfae0b1e6.tar.xz ice-36daf1738a84814a05fa0aafa59b8fdcfae0b1e6.zip |
Fix ICE-7235 - Objective-C cross C++ objects test
Diffstat (limited to 'cpp/test/Ice/objects/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/objects/TestI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/objects/TestI.cpp b/cpp/test/Ice/objects/TestI.cpp index 31e09a303c4..5ac2efce628 100644 --- a/cpp/test/Ice/objects/TestI.cpp +++ b/cpp/test/Ice/objects/TestI.cpp @@ -321,7 +321,7 @@ UnexpectedObjectExceptionTestI::ice_invoke(const std::vector<Ice::Byte>&, Ice::CommunicatorPtr communicator = current.adapter->getCommunicator(); Ice::OutputStream out(communicator); out.startEncapsulation(current.encoding, Ice::DefaultFormat); - AlsoEmptyPtr obj = ICE_MAKE_SHARED(AlsoEmpty); + AlsoEmptyPtr obj = ICE_MAKE_SHARED(AlsoEmpty); out.write(obj); out.writePendingValues(); out.endEncapsulation(); |