diff options
Diffstat (limited to 'linguistic/source')
-rw-r--r-- | linguistic/source/convdicxml.hxx | 7 | ||||
-rw-r--r-- | linguistic/source/misc.cxx | 5 |
2 files changed, 0 insertions, 12 deletions
diff --git a/linguistic/source/convdicxml.hxx b/linguistic/source/convdicxml.hxx index c490fb71572b..3dd3182fcbe5 100644 --- a/linguistic/source/convdicxml.hxx +++ b/linguistic/source/convdicxml.hxx @@ -52,9 +52,6 @@ public: bSuccess ( false ) { } - virtual ~ConvDicXMLExport() override - { - } // SvXMLExport void ExportAutoStyles_() override {} @@ -89,10 +86,6 @@ public: nConversionType = -1; } - virtual ~ConvDicXMLImport() throw () override - { - } - virtual void SAL_CALL startDocument() throw( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override; virtual SvXMLImportContext * CreateContext( diff --git a/linguistic/source/misc.cxx b/linguistic/source/misc.cxx index 4ceb55b16bcb..b8a3e7f6b507 100644 --- a/linguistic/source/misc.cxx +++ b/linguistic/source/misc.cxx @@ -129,7 +129,6 @@ private: public: IntArray2D( int nDim1, int nDim2 ); - ~IntArray2D(); sal_Int32 & Value( int i, int k ); }; @@ -141,10 +140,6 @@ IntArray2D::IntArray2D( int nDim1, int nDim2 ) pData.reset( new sal_Int32[n1 * n2] ); } -IntArray2D::~IntArray2D() -{ -} - sal_Int32 & IntArray2D::Value( int i, int k ) { assert( (0 <= i && i < n1) && "first index out of range" ); |