summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2016-01-12 10:09:44 +0100
committerJose <jose@zeroc.com>2016-01-12 10:09:44 +0100
commit2688fda259617cda9eaee46530cc4bb63999d327 (patch)
treef9b203c82e69cd3028ef1f0ba3a6a22f371ee48b /cpp/src/slice2cpp/Gen.cpp
parentFixed ICE-6960 - Ice/objects rpath issue to find TestCommon (diff)
downloadice-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/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp2
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);