summaryrefslogtreecommitdiff
path: root/include/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-23 14:00:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-24 04:59:44 +0000
commit5145f60cc9046369923fca9a336f2009c426e9eb (patch)
tree9fcbc883ea478adc61862698dd9c6cbd8e25d924 /include/basic
parent79497f458727a0dea983847fe9d3873bf9c2e972 (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/basic')
-rw-r--r--include/basic/codecompletecache.hxx1
-rw-r--r--include/basic/sbx.hxx1
2 files changed, 0 insertions, 2 deletions
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;