From 4084f9332956b93f009bb1ab50e1708ce90312ff Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 26 Jul 2018 11:28:22 +0200 Subject: 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 --- helpcompiler/inc/HelpCompiler.hxx | 1 - 1 file changed, 1 deletion(-) 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; -- cgit