summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2019-03-14 13:57:07 -0400
committerJoe George <joe@zeroc.com>2019-03-14 13:57:32 -0400
commit8d27fc2dc79439eaedcfb024ea0465cbb20a67eb (patch)
tree3f6a4343464bb8c499f7fe56fe9ffb1a0e559ec4 /cpp/src
parentProxy test updates (diff)
downloadice-8d27fc2dc79439eaedcfb024ea0465cbb20a67eb.tar.bz2
ice-8d27fc2dc79439eaedcfb024ea0465cbb20a67eb.tar.xz
ice-8d27fc2dc79439eaedcfb024ea0465cbb20a67eb.zip
Fix _invoke call
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/slice2swift/Gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2swift/Gen.cpp b/cpp/src/slice2swift/Gen.cpp
index 746a6a285d8..d8532c9df4c 100644
--- a/cpp/src/slice2swift/Gen.cpp
+++ b/cpp/src/slice2swift/Gen.cpp
@@ -975,7 +975,7 @@ Gen::ProxyVisitor::visitOperation(const OperationPtr& op)
out << nl << "mode: " << modeToString(op->mode()) << ",";
out << nl << "twowayOnly: " << (twowayOnly ? "true" : "false") << ",";
out << nl << "inParams: ostr,";
- out << nl << "hasOutParams: " << (outParams.empty() ? "false" : "true") << ",";
+ out << nl << "hasOutParams: " << (useInputStream ? "false" : "true") << ",";
out << nl << "exceptions: ";
out << "[";
for(ExceptionList::const_iterator q = throws.begin(); q != throws.end(); ++q)