mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
fix std::is_pod<>
This commit is contained in:
parent
ce1bc278e3
commit
fab6d615a1
@ -19,7 +19,7 @@ constexpr T default_invalid_value(){
|
|||||||
template<typename V>
|
template<typename V>
|
||||||
struct SmallNameDict{
|
struct SmallNameDict{
|
||||||
using K = StrName;
|
using K = StrName;
|
||||||
static_assert(std::is_pod_v<V>);
|
static_assert(is_pod<V>::value);
|
||||||
|
|
||||||
bool _is_small;
|
bool _is_small;
|
||||||
uint16_t _size;
|
uint16_t _size;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user