mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-10-24 11:27:10 +08:00
This warning is triggered by GCC when copying into non-trivially default constructible types, as it uses the more restrictive std::is_trivial (which includes std::is_trivially_default_constructible) to determine whether memcpy is safe instead of std::is_trivially_copyable.