summaryrefslogtreecommitdiffstats
path: root/tests/auto/other/collections
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/other/collections')
-rw-r--r--tests/auto/other/collections/tst_collections.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/other/collections/tst_collections.cpp b/tests/auto/other/collections/tst_collections.cpp
index 973938594f..d4d70b5c36 100644
--- a/tests/auto/other/collections/tst_collections.cpp
+++ b/tests/auto/other/collections/tst_collections.cpp
@@ -3032,8 +3032,8 @@ void instantiateContainer()
container.isEmpty();
container.size();
- container != constContainer;
- container == constContainer;
+ Q_UNUSED((container != constContainer));
+ Q_UNUSED((container == constContainer));
container = constContainer;
}
@@ -3097,8 +3097,8 @@ void instantiateAssociative()
container.intersect(constContainer);
container.subtract(constContainer);
- container != constContainer;
- container == constContainer;
+ Q_UNUSED((container != constContainer));
+ Q_UNUSED((container == constContainer));
container & constContainer;
container &= constContainer;
container &= value;