mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
TEST: Fix warnings
This commit is contained in:
parent
4a8cfd6d0b
commit
f41cf652eb
@ -659,7 +659,7 @@ public:
|
||||
TS_ASSERT(span.checkInvalidBounds(2, -4)); // negative overflow (-2)
|
||||
TS_ASSERT(span.checkInvalidBounds(0, 10)); // delta positive overflow
|
||||
|
||||
const Common::Span<byte>::difference_type big = 1L << (8 * sizeof(Common::Span<byte>::difference_type) - 1);
|
||||
const Common::Span<byte>::difference_type big = (Common::Span<byte>::difference_type)1 << (8 * sizeof(Common::Span<byte>::difference_type) - 1);
|
||||
TS_ASSERT(span.checkInvalidBounds(big, 0));
|
||||
TS_ASSERT(span.checkInvalidBounds(0, big));
|
||||
TS_ASSERT(span.checkInvalidBounds(big, big));
|
||||
@ -687,7 +687,7 @@ public:
|
||||
}
|
||||
|
||||
void test_span_comparators() {
|
||||
byte data[2];
|
||||
byte data[2] = { 0 };
|
||||
Common::Span<const byte> span0(data, sizeof(data));
|
||||
Common::Span<const byte> span1(data, sizeof(data));
|
||||
Common::Span<const byte> span2(data, sizeof(data) - 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user