فهرست منبع

fix `std::is_pod<>`

blueloveTH 2 سال پیش
والد
کامیت
fab6d615a1
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      include/pocketpy/namedict.h

+ 1 - 1
include/pocketpy/namedict.h

@@ -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;