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/slice2cpp | |
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/slice2cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index f390ce4ce13..76d950bc097 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -6557,7 +6557,7 @@ Slice::Gen::Cpp11ProxyVisitor::visitOperation(const OperationPtr& p) if(ret || !outParams.empty()) { C << nl << "false" << ","; - C << nl << "[__response = ::std::move(__response)](::IceInternal::BasicStream* __is)"; + C << nl << "[__response](::IceInternal::BasicStream* __is)"; C << sb; writeAllocateCode(C, outParams, p, true, _useWstring | TypeContextAMIEnd | TypeContextReadClosure, true); writeUnmarshalCode(C, outParams, p, true, _useWstring | TypeContextAMIEnd); |