From 351dfa84c2806e92c8feba1bc9638b5e156aeaf8 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 12 Aug 2023 01:17:44 -0400 Subject: [PATCH] Remove obsolete STATIC_FIELDS_GROUP check --- library/DataIdentity.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/DataIdentity.cpp b/library/DataIdentity.cpp index ba7c7f4a6..8e9467c5b 100644 --- a/library/DataIdentity.cpp +++ b/library/DataIdentity.cpp @@ -21,7 +21,6 @@ namespace df { opaque_identity identity_traits::identity(sizeof(type), allocator_noassign_fn, name) #define STL_OPAQUE_IDENTITY_TRAITS(type) OPAQUE_IDENTITY_TRAITS_NAME(std::type, #type) -#ifndef STATIC_FIELDS_GROUP INTEGER_IDENTITY_TRAITS(char, "char"); INTEGER_IDENTITY_TRAITS(signed char, "int8_t"); INTEGER_IDENTITY_TRAITS(unsigned char, "uint8_t"); @@ -51,5 +50,4 @@ namespace df { STL_OPAQUE_IDENTITY_TRAITS(future); buffer_container_identity buffer_container_identity::base_instance; -#endif }