summaryrefslogtreecommitdiff
path: root/cpp/src/slice2swift/Gen.cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2019-03-14 13:58:18 -0400
committerJoe George <joe@zeroc.com>2019-03-14 13:58:18 -0400
commit8b9061299711b4e17faa47f70a2653ef321bc6d3 (patch)
treebcecbbd43f0467dc17722a8edd6e082fa1838b51 /cpp/src/slice2swift/Gen.cpp
parentFix _invoke call (diff)
downloadice-8b9061299711b4e17faa47f70a2653ef321bc6d3.tar.bz2
ice-8b9061299711b4e17faa47f70a2653ef321bc6d3.tar.xz
ice-8b9061299711b4e17faa47f70a2653ef321bc6d3.zip
Actually fix _invoke
Diffstat (limited to 'cpp/src/slice2swift/Gen.cpp')
-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 d8532c9df4c..cf91a65b6d2 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: " << (useInputStream ? "false" : "true") << ",";
+ out << nl << "hasOutParams: " << (useInputStream ? "true" : "false") << ",";
out << nl << "exceptions: ";
out << "[";
for(ExceptionList::const_iterator q = throws.begin(); q != throws.end(); ++q)