diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 11:47:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 20:40:03 +0200 |
commit | 74da5c2914876cb2b1d4cc0e898d6bab0c99fb98 (patch) | |
tree | f53962ccace7ce43105d02b53929e168009580b1 /comphelper | |
parent | 6a5a69bd59b96b83468079ed3c08f0c6d92608a6 (diff) |
comphelper: avoid -Werror=deprecated-copy (GCC trunk towards GCC 9)
...by removing explicitly user-provided functions that do the same as their
implicitly-defined counterparts, but may prevent implicitly declared copy
functions from being defined as non-deleted in the future. (Even if a dtor was
declared non-inline in an include file, the apparently-used implicitly-defined
copy functions are already inline, so why bother with a non-inline dtor.)
Change-Id: Id5494686dd169b17de7830588e603d1fd5f6b768
Reviewed-on: https://gerrit.libreoffice.org/58061
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/logging.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/comphelper/source/misc/logging.cxx b/comphelper/source/misc/logging.cxx index c6863539a116..5b6c6bc6fda2 100644 --- a/comphelper/source/misc/logging.cxx +++ b/comphelper/source/misc/logging.cxx @@ -72,12 +72,6 @@ namespace comphelper { } - - EventLogger::~EventLogger() - { - } - - bool EventLogger::isLoggable( const sal_Int32 _nLogLevel ) const { if ( !m_pImpl->isValid() ) |