summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2019-07-03 16:45:17 +0200
committerMarc Mutz <marc.mutz@kdab.com>2019-07-03 17:25:37 +0200
commit1a924ee6bb250aa0a8d64d66491950bc3d86091e (patch)
treec981e91496a4f4d862181cf5c1159e9c5e4018f4
parentfafb11943fac1a4a452b3db70ab604ff5aa1e281 (diff)
Fix yet another -Wdeprecated-copy warning
Change-Id: Ief4af43c6e158f7a3eda09700f3027c5f04050c5 Reviewed-by: Michael Brasser <michael.brasser@live.com>
-rw-r--r--tests/auto/modelview/tst_modelview.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/auto/modelview/tst_modelview.cpp b/tests/auto/modelview/tst_modelview.cpp
index 1512f10..2a8ddcb 100644
--- a/tests/auto/modelview/tst_modelview.cpp
+++ b/tests/auto/modelview/tst_modelview.cpp
@@ -89,10 +89,6 @@ struct InsertedRow
: m_index(index)
, m_start(start)
, m_end(end){}
- InsertedRow(const InsertedRow &other)
- : m_index(other.m_index)
- , m_start(other.m_start)
- , m_end(other.m_end){}
bool match(const QList<QVariant> &signal) const
{
if (signal.size() != 3)