diff options
author | Jose <jose@zeroc.com> | 2016-01-12 10:09:44 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-12 10:09:44 +0100 |
commit | 2688fda259617cda9eaee46530cc4bb63999d327 (patch) | |
tree | f9b203c82e69cd3028ef1f0ba3a6a22f371ee48b /cpp/src/Ice/Proxy.cpp | |
parent | Fixed ICE-6960 - Ice/objects rpath issue to find TestCommon (diff) | |
download | ice-2688fda259617cda9eaee46530cc4bb63999d327.tar.bz2 ice-2688fda259617cda9eaee46530cc4bb63999d327.tar.xz ice-2688fda259617cda9eaee46530cc4bb63999d327.zip |
Remove C++14 usage and switch to -std=c++11
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 0c43fb40aa3..895fbced78b 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -97,7 +97,7 @@ Ice::ObjectPrx::ice_isA_async(const string& typeId, os->write(typeId); }, false, - [response = move(response)](IceInternal::BasicStream* is) + [response](IceInternal::BasicStream* is) { bool ret; is->read(ret); |