summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/Gen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r--cpp/src/slice2cpp/Gen.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index cd652e3591d..f4dc26876f4 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -571,7 +571,6 @@ Slice::Gen::TypesVisitor::visitExceptionStart(const ExceptionPtr& p)
}
H << allTypes << epar << ';';
}
- H << nl << "virtual ~" << name << "() throw();";
H << sp;
if(p->isLocal())
@@ -638,11 +637,6 @@ Slice::Gen::TypesVisitor::visitExceptionStart(const ExceptionPtr& p)
C << eb;
}
- C << sp << nl;
- C << scoped.substr(2) << "::~" << name << "() throw()";
- C << sb;
- C << eb;
-
H << nl << "virtual ::std::string ice_name() const;";
string flatName = p->flattenedScope() + p->name() + "_name";