Kaydet (Commit) efa1d0df authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=deprecated-copy (GCC trunk towards GCC 9)

Change-Id: I12d5cfafab17e02dc041eff8af207ba36df9bb5a
Reviewed-on: https://gerrit.libreoffice.org/56938
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst 58eb31be
......@@ -91,6 +91,12 @@ namespace slideshow
~ShapeSubset();
// For a rationale for this hacky combination of user-provided dtor, defaulted copy
// ctor, and deleted copy assignment op, see the "TODO(Q1)" comment in
// CloningNodeCreator (slideshow/source/engine/animationnodes/animationnodefactory.cxx):
ShapeSubset(ShapeSubset const &) = default;
void operator =(ShapeSubset) = delete;
/** Get the actual subset shape.
If the subset is currently revoked, this method
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment