Remove invalid/useless test sizeof(ptr) == 4
This test is currently valid only for 32bit architectures. There doesn't seem to be a true reason for this test to ensure a pointer is exactly 4 bytes, so remove the test.pull/35/head
parent
3ba072aea7
commit
3cd94996e9
|
|
@ -2,5 +2,4 @@
|
||||||
|
|
||||||
TEST_CASE("type tests", "[system]") {
|
TEST_CASE("type tests", "[system]") {
|
||||||
REQUIRE(sizeof(uint64_t) == 8);
|
REQUIRE(sizeof(uint64_t) == 8);
|
||||||
REQUIRE(sizeof(char *) == 4);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue