summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2019-11-03 12:33:04 -0500
committerJoe George <joe@zeroc.com>2023-11-22 12:12:45 -0500
commitd7bbb42165b631d392713c292b19b954a634e577 (patch)
tree2f9fb7c6017f7f558000cabbc116ce345292cb6c /cpp/src
parentFixed the check in "Ice/binding" test for detecting the browser environment (diff)
downloadice-d7bbb42165b631d392713c292b19b954a634e577.tar.bz2
ice-d7bbb42165b631d392713c292b19b954a634e577.tar.xz
ice-d7bbb42165b631d392713c292b19b954a634e577.zip
Fixed typo in _makeLambdaOutgoing name
Diffstat (limited to 'cpp/src')
-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 3cf59d4dac4..3f02c535213 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -7252,7 +7252,7 @@ Slice::Gen::Cpp11ProxyVisitor::visitOperation(const OperationPtr& p)
H << epar << ";" << eb << ";";
}
- H << nl << "return _makeLamdaOutgoing<" << futureT << ">" << spar;
+ H << nl << "return _makeLambdaOutgoing<" << futureT << ">" << spar;
H << "std::move(" + (futureOutParams.size() > 1 ? "_responseCb" : responseParam) + ")"
<< "std::move(" + exParam + ")"