summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qexplicitlyshareddatapointer
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-26 19:41:23 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-29 14:33:29 +0200
commit9023791a45d11ec170e07f21bd106075c86dd3dc (patch)
tree83c79c87f2ff18ec9de85d4c8cc2e1eb7166793c /tests/auto/corelib/tools/qexplicitlyshareddatapointer
parent6f17509ad9044c689e22719c6c4d1f7f88e4c954 (diff)
Fix warnings about unused expression results in tests
Change-Id: I401ec8a3742a5bb51a1b8b291c53395c3880117c Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'tests/auto/corelib/tools/qexplicitlyshareddatapointer')
-rw-r--r--tests/auto/corelib/tools/qexplicitlyshareddatapointer/tst_qexplicitlyshareddatapointer.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/corelib/tools/qexplicitlyshareddatapointer/tst_qexplicitlyshareddatapointer.cpp b/tests/auto/corelib/tools/qexplicitlyshareddatapointer/tst_qexplicitlyshareddatapointer.cpp
index e89e634841..7c1e90f5d4 100644
--- a/tests/auto/corelib/tools/qexplicitlyshareddatapointer/tst_qexplicitlyshareddatapointer.cpp
+++ b/tests/auto/corelib/tools/qexplicitlyshareddatapointer/tst_qexplicitlyshareddatapointer.cpp
@@ -169,7 +169,7 @@ void tst_QExplicitlySharedDataPointer::data() const
pointer.data();
/* Check that this cast is possible. */
- static_cast<const MyClass *>(pointer.data());
+ Q_UNUSED(static_cast<const MyClass *>(pointer.data()));
QVERIFY(! (pointer == nullptr));
QVERIFY(! (nullptr == pointer));
@@ -181,7 +181,7 @@ void tst_QExplicitlySharedDataPointer::data() const
pointer.data();
/* Check that this cast is possible. */
- static_cast<const MyClass *>(pointer.data());
+ Q_UNUSED(static_cast<const MyClass *>(pointer.data()));
}
/* Must not mutate the pointer. */
@@ -190,8 +190,8 @@ void tst_QExplicitlySharedDataPointer::data() const
pointer.data();
/* Check that these casts are possible. */
- static_cast<MyClass *>(pointer.data());
- static_cast<const MyClass *>(pointer.data());
+ Q_UNUSED(static_cast<MyClass *>(pointer.data()));
+ Q_UNUSED(static_cast<const MyClass *>(pointer.data()));
}
/* Must not mutate the pointer. */
@@ -200,8 +200,8 @@ void tst_QExplicitlySharedDataPointer::data() const
pointer.data();
/* Check that these casts are possible. */
- static_cast<MyClass *>(pointer.data());
- static_cast<const MyClass *>(pointer.data());
+ Q_UNUSED(static_cast<MyClass *>(pointer.data()));
+ Q_UNUSED(static_cast<const MyClass *>(pointer.data()));
}
}