summaryrefslogtreecommitdiff
path: root/cpp/src/slice2swift/Gen.cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2019-04-02 13:50:43 -0400
committerJoe George <joe@zeroc.com>2019-04-02 13:50:43 -0400
commitbd8e58683462d11aa452913a3b1424665bdc7052 (patch)
treec3a7622e5f7c7bf211d510345f1b5c462001512b /cpp/src/slice2swift/Gen.cpp
parentFix dispatch base classes (diff)
downloadice-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.cpp2
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:";