diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 11:28:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-07-27 08:19:01 +0200 |
commit | 4084f9332956b93f009bb1ab50e1708ce90312ff (patch) | |
tree | 4440b4d31c48d0b80923541c871009d2abb4d8fd /helpcompiler/inc | |
parent | db481dff62bd8f744083c91b12289ff92a166ff1 (diff) |
helpcompiler: 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
Change-Id: I61182be57a0ed9071e3559a6445aee98ec5c19bf
Reviewed-on: https://gerrit.libreoffice.org/58057
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'helpcompiler/inc')
-rw-r--r-- | helpcompiler/inc/HelpCompiler.hxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/helpcompiler/inc/HelpCompiler.hxx b/helpcompiler/inc/HelpCompiler.hxx index 518830ad62b3..dbc76764e35b 100644 --- a/helpcompiler/inc/HelpCompiler.hxx +++ b/helpcompiler/inc/HelpCompiler.hxx @@ -65,7 +65,6 @@ namespace fs OUString data; public: path() {} - path(const path &rOther) : data(rOther.data) {} path(const std::string &in, convert) { OUString sWorkingDir; |