diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-12 11:07:24 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-12 14:35:24 +0100 |
commit | 31fffe5538fd8011afa0076fdca39379c28fcff5 (patch) | |
tree | 1254cba1665cac704d93be54ae985e7d4b19a270 /sd | |
parent | 64bf055db690a4475cf49dc03800619674b891c2 (diff) |
Remove some redundant user-provided dtors
...which silences various -Wdeprecated-copy-dtor warnings from Clang 10 trunk
about copy functions being implicitly defined as non-deleted even though the
class has a user-declared dtor
Change-Id: I3409d403c3c709de4ad94eccbc2d7869e41847cc
Reviewed-on: https://gerrit.libreoffice.org/85032
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/epptbase.hxx | 1 | ||||
-rw-r--r-- | sd/source/filter/eppt/pptx-text.cxx | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/sd/source/filter/eppt/epptbase.hxx b/sd/source/filter/eppt/epptbase.hxx index 17fa61dd9e66..d04bafb81c20 100644 --- a/sd/source/filter/eppt/epptbase.hxx +++ b/sd/source/filter/eppt/epptbase.hxx @@ -169,7 +169,6 @@ struct FontCollectionEntry { ImplInit( rName ); }; - ~FontCollectionEntry(); private: diff --git a/sd/source/filter/eppt/pptx-text.cxx b/sd/source/filter/eppt/pptx-text.cxx index 10ed9d3b69eb..6e57dacdd376 100644 --- a/sd/source/filter/eppt/pptx-text.cxx +++ b/sd/source/filter/eppt/pptx-text.cxx @@ -1330,10 +1330,6 @@ bool TextObj::HasExtendedBullets() const return mpImplTextObj->mbHasExtendedBullets; } -FontCollectionEntry::~FontCollectionEntry() -{ -} - void FontCollectionEntry::ImplInit( const OUString& rName ) { OUString aSubstName( GetSubsFontName( rName, SubsFontFlags::ONLYONE | SubsFontFlags::MS ) ); |