diff options
Diffstat (limited to 'cpp/src/slice2swift/Gen.cpp')
-rw-r--r-- | cpp/src/slice2swift/Gen.cpp | 2 |
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) |