life: remove use of std::is_pod - it's deprecated since C++20
replace it with std::is_trivially_destructible which is narrower but that's fine - it means that earlier, for some types we would not call destructors explicitly and now we will (but they will do nothing).
parent
d67445dd
Please register or sign in to comment