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

salhelper: 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: I58b1b41823fa9eb5f37187272e38a2df80c48afb
Reviewed-on: https://gerrit.libreoffice.org/58103
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst 08ec78be
......@@ -56,12 +56,6 @@ struct SAL_WARN_UNUSED TTimeValue : public TimeValue
normalize();
}
TTimeValue( const TTimeValue& rTimeValue ):
TimeValue(rTimeValue)
{
normalize();
}
TTimeValue( const TimeValue& rTimeValue )
{
Seconds = rTimeValue.Seconds;
......
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