diff options
author | Joe George <joe@zeroc.com> | 2019-04-02 13:50:43 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2019-04-02 13:50:43 -0400 |
commit | bd8e58683462d11aa452913a3b1424665bdc7052 (patch) | |
tree | c3a7622e5f7c7bf211d510345f1b5c462001512b /cpp/src/slice2swift/Gen.cpp | |
parent | Fix dispatch base classes (diff) | |
download | ice-bd8e58683462d11aa452913a3b1424665bdc7052.tar.bz2 ice-bd8e58683462d11aa452913a3b1424665bdc7052.tar.xz ice-bd8e58683462d11aa452913a3b1424665bdc7052.zip |
Fix dispatch function names
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 6c208a294fe..9c4b0e8fdfd 100644 --- a/cpp/src/slice2swift/Gen.cpp +++ b/cpp/src/slice2swift/Gen.cpp @@ -1333,7 +1333,7 @@ Gen::ObjectExtVisitor::visitClassDefEnd(const ClassDefPtr& p) const string opName = *q; out << nl << "case \"" << opName << "\":"; out.inc(); - out << nl << "try iceD_" << fixIdent(opName) << "(incoming: inS, current: current)"; + out << nl << "try iceD_" << opName << "(incoming: inS, current: current)"; out.dec(); } out << nl << "default:"; |