mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-20 10:25:28 +00:00
Fix clang/GCC warnings
This commit is contained in:
committed by
Corentin Wallez
parent
f30dffa75f
commit
98c90d4faa
@@ -27,6 +27,7 @@ TEST(SerialQueue, BasicTest) {
|
||||
|
||||
// Iterating on empty queue 1) works 2) doesn't produce any values
|
||||
for (int value : queue.IterateAll()) {
|
||||
(void) value;
|
||||
ASSERT_TRUE(false);
|
||||
}
|
||||
|
||||
@@ -49,6 +50,7 @@ TEST(SerialQueue, BasicTest) {
|
||||
ASSERT_TRUE(queue.Empty());
|
||||
|
||||
for (int value : queue.IterateAll()) {
|
||||
(void) value;
|
||||
ASSERT_TRUE(false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user