diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-07-18 20:55:31 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-07-18 20:56:23 +0000 |
commit | a05470bdfc2c43e49eae41bbf045cd8856d9433d (patch) | |
tree | 4dc1d42cd865dfa3663a7083d08e1ad5df9b5e60 /cpp/test/Ice/optional/Client.cpp | |
parent | Customizable PHP config (diff) | |
download | ice-a05470bdfc2c43e49eae41bbf045cd8856d9433d.tar.bz2 ice-a05470bdfc2c43e49eae41bbf045cd8856d9433d.tar.xz ice-a05470bdfc2c43e49eae41bbf045cd8856d9433d.zip |
New C++11 optional mapping
Diffstat (limited to 'cpp/test/Ice/optional/Client.cpp')
-rw-r--r-- | cpp/test/Ice/optional/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/optional/Client.cpp b/cpp/test/Ice/optional/Client.cpp index d8a550ffd13..4983ad69a88 100644 --- a/cpp/test/Ice/optional/Client.cpp +++ b/cpp/test/Ice/optional/Client.cpp @@ -19,8 +19,8 @@ using namespace Test; int run(int, char**, const Ice::CommunicatorPtr& communicator) { - InitialPrx allTests(const Ice::CommunicatorPtr&, bool); - InitialPrx initial = allTests(communicator, false); + InitialPrxPtr allTests(const Ice::CommunicatorPtr&, bool); + InitialPrxPtr initial = allTests(communicator, false); initial->shutdown(); return EXIT_SUCCESS; } |