diff options
author | Jose <jose@zeroc.com> | 2015-12-15 18:35:14 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-15 18:35:14 +0100 |
commit | de0939c485861ad124f64e213883c74571eefa2b (patch) | |
tree | c6dc163ddcee5aa0d878eb2463b57fc6a32a5f47 /cpp/test/Ice/dispatcher/TestI.cpp | |
parent | Removed iOS workaround from udp test (diff) | |
download | ice-de0939c485861ad124f64e213883c74571eefa2b.tar.bz2 ice-de0939c485861ad124f64e213883c74571eefa2b.tar.xz ice-de0939c485861ad124f64e213883c74571eefa2b.zip |
C++11 mapping: fixes to InitializationData
Diffstat (limited to 'cpp/test/Ice/dispatcher/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/dispatcher/TestI.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/Ice/dispatcher/TestI.cpp b/cpp/test/Ice/dispatcher/TestI.cpp index d06da693f78..03292582ca5 100644 --- a/cpp/test/Ice/dispatcher/TestI.cpp +++ b/cpp/test/Ice/dispatcher/TestI.cpp @@ -28,7 +28,11 @@ TestIntfI::sleep(Ice::Int to, const Ice::Current&) } void +#ifdef ICE_CPP11_MAPPING +TestIntfI::opWithPayload(Ice::ByteSeq, const Ice::Current&) +#else TestIntfI::opWithPayload(const Ice::ByteSeq&, const Ice::Current&) +#endif { test(Dispatcher::isDispatcherThread()); } |