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
Yuri D'Elia 2021-06-27 15:19:54 +02:00
parent 4d6d6fe0af
commit e02b49082d
1 changed files with 0 additions and 1 deletions

View File

@ -2,5 +2,4 @@
TEST_CASE("type tests", "[system]") {
REQUIRE(sizeof(uint64_t) == 8);
REQUIRE(sizeof(char *) == 4);
}