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 /include | |
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 'include')
-rw-r--r-- | include/comphelper/logging.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/comphelper/logging.hxx b/include/comphelper/logging.hxx index 69d6c9a354ec..fd04e83f732d 100644 --- a/include/comphelper/logging.hxx +++ b/include/comphelper/logging.hxx @@ -108,8 +108,6 @@ namespace comphelper const sal_Char* _pAsciiLoggerName ); - ~EventLogger(); - public: /// determines whether an event with the given level would be logged bool isLoggable( const sal_Int32 _nLogLevel ) const; |