diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-05-09 16:45:40 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2019-05-09 16:45:40 -0400 |
commit | 72c962c5902d92c7826a4d916048780957d84e7d (patch) | |
tree | 7b68a38a4187a83a394c5acb8e83f45db7c09b91 /cpp/src/slice2swift/Gen.cpp | |
parent | Added doc for ice_ping (diff) | |
download | ice-72c962c5902d92c7826a4d916048780957d84e7d.tar.bz2 ice-72c962c5902d92c7826a4d916048780957d84e7d.tar.xz ice-72c962c5902d92c7826a4d916048780957d84e7d.zip |
Make sent closure a trailing closure
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 c12aad10453..ca30448b6fa 100644 --- a/cpp/src/slice2swift/Gen.cpp +++ b/cpp/src/slice2swift/Gen.cpp @@ -1772,9 +1772,9 @@ Gen::LocalObjectVisitor::visitOperation(const OperationPtr& p) << typeToString(type, p, param->getMetaData(), param->optional(), typeCtx); out << s.str(); } - out << "sent: ((Swift.Bool) -> Swift.Void)?"; out << "sentOn: Dispatch.DispatchQueue?"; out << "sentFlags: Dispatch.DispatchWorkItemFlags?"; + out << "sent: ((Swift.Bool) -> Swift.Void)?"; out << epar; out << " -> "; |