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/34/head
parent
4d6d6fe0af
commit
e02b49082d
|
|
@ -2,5 +2,4 @@
|
|||
|
||||
TEST_CASE("type tests", "[system]") {
|
||||
REQUIRE(sizeof(uint64_t) == 8);
|
||||
REQUIRE(sizeof(char *) == 4);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue