[Libreoffice-commits] core.git: writerfilter/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Jul 26 11:37:27 UTC 2018
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit aa415ee2d6b8816c9a280321660e20c41c59e896
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Jul 26 10:01:32 2018 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Jul 26 13:37:02 2018 +0200
OOXMLFastContextHandler has a deleted copy assignment op
...for whatever reason, ever since the file's introduction with
359fd901c7c8a1c37e1d2ccee2b5a2cf6c3c93d1 "INTEGRATION: CWS xmlfilter02". Make
the copy ctor expliticly defaulted to avoid -Werror=deprecated-copy with GCC
trunk towards GCC 9.
Change-Id: I7785dfb073767ba963ceec682cfbdfe192eed69b
Reviewed-on: https://gerrit.libreoffice.org/58040
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
index cd6768e4fbb0..0bf03601e5b5 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
@@ -46,6 +46,8 @@ public:
explicit OOXMLFastContextHandler(OOXMLFastContextHandler * pContext);
+ OOXMLFastContextHandler(OOXMLFastContextHandler const &) = default;
+
virtual ~OOXMLFastContextHandler() override;
// css::xml::sax::XFastContextHandler:
More information about the Libreoffice-commits
mailing list