diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-23 14:00:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-24 04:59:44 +0000 |
commit | 5145f60cc9046369923fca9a336f2009c426e9eb (patch) | |
tree | 9fcbc883ea478adc61862698dd9c6cbd8e25d924 /include | |
parent | 79497f458727a0dea983847fe9d3873bf9c2e972 (diff) |
loplugin: unnecessary destructor: basctl..codemaker
Change-Id: Iadcfa9bc4fe9efb8d24d6d6afaf2b9b3def0bc3c
Reviewed-on: https://gerrit.libreoffice.org/33452
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/basegfx/point/b3dpoint.hxx | 3 | ||||
-rw-r--r-- | include/basegfx/tuple/b2i64tuple.hxx | 3 | ||||
-rw-r--r-- | include/basegfx/vector/b3dvector.hxx | 3 | ||||
-rw-r--r-- | include/basic/codecompletecache.hxx | 1 | ||||
-rw-r--r-- | include/basic/sbx.hxx | 1 | ||||
-rw-r--r-- | include/codemaker/exceptiontree.hxx | 2 | ||||
-rw-r--r-- | include/codemaker/generatedtypeset.hxx | 2 |
7 files changed, 0 insertions, 15 deletions
diff --git a/include/basegfx/point/b3dpoint.hxx b/include/basegfx/point/b3dpoint.hxx index cc740203d631..c2711202d3de 100644 --- a/include/basegfx/point/b3dpoint.hxx +++ b/include/basegfx/point/b3dpoint.hxx @@ -80,9 +80,6 @@ namespace basegfx : B3DTuple(rTuple) {} - ~B3DPoint() - {} - /** *=operator to allow usage from B3DPoint, too */ B3DPoint& operator*=( const B3DPoint& rPnt ) diff --git a/include/basegfx/tuple/b2i64tuple.hxx b/include/basegfx/tuple/b2i64tuple.hxx index 124fea65eb3c..10942b0dd452 100644 --- a/include/basegfx/tuple/b2i64tuple.hxx +++ b/include/basegfx/tuple/b2i64tuple.hxx @@ -76,9 +76,6 @@ namespace basegfx mnY( rTup.mnY ) {} - ~B2I64Tuple() - {} - /// Get X-Coordinate of 2D Tuple sal_Int64 getX() const { diff --git a/include/basegfx/vector/b3dvector.hxx b/include/basegfx/vector/b3dvector.hxx index cf4b1b24983d..59d7d79f0747 100644 --- a/include/basegfx/vector/b3dvector.hxx +++ b/include/basegfx/vector/b3dvector.hxx @@ -80,9 +80,6 @@ namespace basegfx : B3DTuple(rTuple) {} - ~B3DVector() - {} - /** *=operator to allow usage from B3DVector, too */ B3DVector& operator*=( const B3DVector& rPnt ) diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index f1c3a9f107d4..00151e83e3c5 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -82,7 +82,6 @@ private: public: CodeCompleteDataCache(){} - ~CodeCompleteDataCache(){} friend BASIC_DLLPUBLIC std::ostream& operator<< (std::ostream& aStream, const CodeCompleteDataCache& aCache); diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index d52b6ce42d42..debfa2e535ea 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -55,7 +55,6 @@ struct SbxParamInfo sal_uInt32 nUserData; // IDs etc. SbxParamInfo( const OUString& s, SbxDataType t, SbxFlagBits n ) : aName( s ), eType( t ), nFlags( n ), nUserData( 0 ) {} - ~SbxParamInfo() {} }; typedef std::vector<std::unique_ptr<SbxParamInfo>> SbxParams; diff --git a/include/codemaker/exceptiontree.hxx b/include/codemaker/exceptiontree.hxx index 9c6b3b919b94..8058cc8dcb29 100644 --- a/include/codemaker/exceptiontree.hxx +++ b/include/codemaker/exceptiontree.hxx @@ -79,8 +79,6 @@ class ExceptionTree { public: ExceptionTree(): m_root("com.sun.star.uno.Exception") {} - ~ExceptionTree() {} - /** Builds the exception hierarchy, by adding one exception type at a time. diff --git a/include/codemaker/generatedtypeset.hxx b/include/codemaker/generatedtypeset.hxx index f6cb452c1990..21c9d0b1ba2a 100644 --- a/include/codemaker/generatedtypeset.hxx +++ b/include/codemaker/generatedtypeset.hxx @@ -38,8 +38,6 @@ class GeneratedTypeSet { public: GeneratedTypeSet() {} - ~GeneratedTypeSet() {} - /** Add a type to the set of generated types. |