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 /include/vcl | |
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 'include/vcl')
-rw-r--r-- | include/vcl/builder.hxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/vcl/builder.hxx b/include/vcl/builder.hxx index 0dea516c7f2a..1016c3a8597d 100644 --- a/include/vcl/builder.hxx +++ b/include/vcl/builder.hxx @@ -153,7 +153,6 @@ private: OString const m_sID; VclPtr<Menu> m_pMenu; MenuAndId(const OString &rId, Menu *pMenu); - ~MenuAndId(); }; std::vector<MenuAndId> m_aMenus; |