summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2019-07-11 09:31:47 +0200
committerMarc Mutz <marc.mutz@kdab.com>2019-07-16 08:52:20 +0000
commit0b437554630d8924f953eeae99b23f843f046844 (patch)
tree4d609c0ab4f4ba418d1e0a98bf442f4bd1064ef9
parent550048ab4a41b382537bfb46d866c233f9f790b4 (diff)
Fix GCC 9 -Wdeprecated-copy warnings
Change-Id: Ia50ce0d2c94b3b064e9cd571e598ecd37ee2b5e3 Reviewed-by: VaL Doroshchuk <valentyn.doroshchuk@qt.io> (cherry picked from commit bddfae90c6ae90f50d48ce9be5e70cb38c54385a)
-rw-r--r--src/multimedia/qmediatimerange.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/multimedia/qmediatimerange.h b/src/multimedia/qmediatimerange.h
index 0b4fe8e67..5b6d711af 100644
--- a/src/multimedia/qmediatimerange.h
+++ b/src/multimedia/qmediatimerange.h
@@ -55,6 +55,7 @@ public:
QMediaTimeInterval();
QMediaTimeInterval(qint64 start, qint64 end);
QMediaTimeInterval(const QMediaTimeInterval&);
+ QMediaTimeInterval &operator=(const QMediaTimeInterval&) = default;
qint64 start() const;
qint64 end() const;