diff options
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:"; |