From f0e738028819ac988dbd825cf1962188c9e5cdc3 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Tue, 12 Sep 2023 03:32:35 +0200 Subject: cleanup --- include/kit.inl.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'include') diff --git a/include/kit.inl.h b/include/kit.inl.h index e16762b..b83e55c 100644 --- a/include/kit.inl.h +++ b/include/kit.inl.h @@ -801,13 +801,6 @@ extern "C" { #ifndef KIT_BIGINT_SIZE # define KIT_BIGINT_SIZE 64 #endif -#if __STDC_VERSION__ >= 199901L -static_assert(sizeof(u8) == 1, "u8 size should be 1 byte"); -static_assert(sizeof(u32) == 4, "u32 size should be 4 bytes"); -static_assert(sizeof(u64) == 8, "u64 size should be 8 bytes"); -static_assert(KIT_BIGINT_SIZE > 0 && (KIT_BIGINT_SIZE % 8) == 0, - "Invalid big integer size"); -#endif typedef struct { u32 v[KIT_BIGINT_SIZE / 4]; } kit_bigint_t; -- cgit v1.2.3