You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
epee: fix serialization compile errors with Boost 1.85
1. `std::is_pod` is deprecated in C++20
2. `boost::uuids::uuid` is no longer a POD type in Boost 1.85
3. `std::is_pod` is technically wrong compile time check here anyways
#defineKV_SERIALIZE_VAL_POD_AS_BLOB_FORCE(varialble) KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE_N(varialble, #varialble) //skip is_pod compile time check
123
+
#defineKV_SERIALIZE_VAL_POD_AS_BLOB_FORCE(varialble) KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE_N(varialble, #varialble) //skip is_trivially_copyable and is_standard_layout compile time check
0 commit comments