diff options
author | Joe George <joe@zeroc.com> | 2019-04-17 11:20:18 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2019-04-17 11:20:18 -0400 |
commit | 3b9eef70455a1a88d2ee5063bcd9c0ab1882edca (patch) | |
tree | 7ccb592122cb9d93d37b8cd1ad1f69a4d8f599fa /cpp/src/slice2swift/SwiftUtil.cpp | |
parent | Add Blobject and BlobjectAsync (diff) | |
download | ice-3b9eef70455a1a88d2ee5063bcd9c0ab1882edca.tar.bz2 ice-3b9eef70455a1a88d2ee5063bcd9c0ab1882edca.tar.xz ice-3b9eef70455a1a88d2ee5063bcd9c0ab1882edca.zip |
Fixes to blobject and async error handling
Diffstat (limited to 'cpp/src/slice2swift/SwiftUtil.cpp')
-rw-r--r-- | cpp/src/slice2swift/SwiftUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2swift/SwiftUtil.cpp b/cpp/src/slice2swift/SwiftUtil.cpp index 22c88a8f335..06bd5da75fd 100644 --- a/cpp/src/slice2swift/SwiftUtil.cpp +++ b/cpp/src/slice2swift/SwiftUtil.cpp @@ -2024,7 +2024,7 @@ SwiftGenerator::writeDispatchAsyncOperation(::IceUtilInternal::Output& out, cons } out << eb; - out << ".catch"; + out << ".catch(on: nil)"; out << sb; out << " err in"; out << nl << "inS.exception(err)"; |