fix std::is_pod<>

This commit is contained in:
blueloveTH 2024-01-26 12:05:06 +08:00
parent ce1bc278e3
commit fab6d615a1

View File

@ -19,7 +19,7 @@ constexpr T default_invalid_value(){
template<typename V>
struct SmallNameDict{
using K = StrName;
static_assert(std::is_pod_v<V>);
static_assert(is_pod<V>::value);
bool _is_small;
uint16_t _size;