diff options
Diffstat (limited to 'cpp/src/slice2swift/Gen.cpp')
-rw-r--r-- | cpp/src/slice2swift/Gen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/slice2swift/Gen.cpp b/cpp/src/slice2swift/Gen.cpp index 7ff72953c30..ceaacf73b9f 100644 --- a/cpp/src/slice2swift/Gen.cpp +++ b/cpp/src/slice2swift/Gen.cpp @@ -390,6 +390,7 @@ Gen::TypesVisitor::visitExceptionStart(const ExceptionPtr& p) } out << sp; + out << nl << "/// :nodoc:"; out << nl << "public class " << name << "_TypeResolver: " << getUnqualified("Ice.UserExceptionTypeResolver", swiftModule); out << sb; @@ -1330,6 +1331,7 @@ Gen::ValueVisitor::visitClassDefStart(const ClassDefPtr& p) } out << sp; + out << nl << "/// :nodoc:"; out << nl << "public class " << name << "_TypeResolver: " << getUnqualified("Ice.ValueTypeResolver", swiftModule); out << sb; out << nl << "public override func type() -> " << getUnqualified("Ice.Value.Type", swiftModule); @@ -1551,7 +1553,6 @@ Gen::ObjectVisitor::visitClassDefStart(const ClassDefPtr& p) const string servant = fixIdent(getUnqualified(getAbsolute(p), swiftModule) + (p->isInterface() ? "" : "Operations")); - // // Disp struct // |