diff options
author | Joe George <joe@zeroc.com> | 2019-03-18 14:31:29 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2019-03-18 14:31:29 -0400 |
commit | 7568dbe07368f4fc5c88ab19593d294401874889 (patch) | |
tree | 5c59fed7c6144a106016f8103c8ecc03de8255d5 /cpp/src/slice2swift/SwiftUtil.cpp | |
parent | Proxy unmarshaling cleanup for streaming (diff) | |
download | ice-7568dbe07368f4fc5c88ab19593d294401874889.tar.bz2 ice-7568dbe07368f4fc5c88ab19593d294401874889.tar.xz ice-7568dbe07368f4fc5c88ab19593d294401874889.zip |
Add ice_staticId and fix proxy unmarshaling func label
Diffstat (limited to 'cpp/src/slice2swift/SwiftUtil.cpp')
-rw-r--r-- | cpp/src/slice2swift/SwiftUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2swift/SwiftUtil.cpp b/cpp/src/slice2swift/SwiftUtil.cpp index 71e8c21bbf8..1f7db4c4980 100644 --- a/cpp/src/slice2swift/SwiftUtil.cpp +++ b/cpp/src/slice2swift/SwiftUtil.cpp @@ -851,7 +851,7 @@ SwiftGenerator::writeMarshalUnmarshalCode(Output &out, } else { - unmarshalParam += ", prx: " + prxType; + unmarshalParam += ", type: " + prxType; } out << nl << assign << " = try " << stream << "read(" << unmarshalParam << ")"; } @@ -968,7 +968,7 @@ SwiftGenerator::writeMarshalUnmarshalCode(Output &out, } else { - unmarshalParam += ", prx: " + prxType; + unmarshalParam += ", type: " + prxType; } out << nl << assign << " = try " << stream << "read(" << unmarshalParam << ")"; } |