mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-23 07:06:36 +00:00
4a14e382d5
std::is_pod is deprecated in C++20 and as such triggers -Wdeprecated-declarations when built with C++20, "is_standard_layout && is_trivial" is the equivalent, so migrate to that. While at it replace runtime dispatch with compile time and reduce the required trait for memcpy to what is really needed. Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>