summaryrefslogtreecommitdiff
path: root/src/tests/common
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2020-11-23 17:42:41 -0500
committercomex <comexk@gmail.com>2020-11-27 17:41:20 -0500
commit3dc310bd525a179cb012e09455ac30cfb8cab67c (patch)
treea724612c01afcadfdf39e03c7b4ed3d2fd70cf40 /src/tests/common
parent322349e8cc948d069f62a85a0c09a689c3e31796 (diff)
tests: Fix warning about comparison between signed and unsigned
Diffstat (limited to 'src/tests/common')
-rw-r--r--src/tests/common/bit_field.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/common/bit_field.cpp b/src/tests/common/bit_field.cpp
index 8ca1889f9..182638000 100644
--- a/src/tests/common/bit_field.cpp
+++ b/src/tests/common/bit_field.cpp
@@ -68,7 +68,7 @@ TEST_CASE("BitField", "[common]") {
}});
// bit fields: 01101100111101'10101110'1011'101100
- REQUIRE(be_bitfield.raw == 0b01101100'11110110'10111010'11101100);
+ REQUIRE(be_bitfield.raw == 0b01101100'11110110'10111010'11101100U);
REQUIRE(be_bitfield.a == 0b101100);
REQUIRE(be_bitfield.b == -5); // 1011 as two's complement
REQUIRE(be_bitfield.c == TestEnum::B);
@@ -80,7 +80,7 @@ TEST_CASE("BitField", "[common]") {
be_bitfield.d.Assign(0b01010101010101);
std::memcpy(&raw, &be_bitfield, sizeof(raw));
// bit fields: 01010101010101'00001111'1111'000111
- REQUIRE(be_bitfield.raw == 0b01010101'01010100'00111111'11000111);
+ REQUIRE(be_bitfield.raw == 0b01010101'01010100'00111111'11000111U);
REQUIRE(raw == std::array<u8, 4>{{
0b01010101,
0b01010100,