fix: missing type_traits include

Usage of `std::is_trivially_constructible` in `defs.hpp` requires including `type_traits`. This missing include leads to errors about that type not being found when building with clang++-22 with libc++-22.

(cherry picked from commit fbe5262d7b)
This commit is contained in:
Klaim (Joël Lamotte)
2025-08-01 16:00:44 +02:00
committed by David Snopek
parent a8faa36fd2
commit 9d8c520bb9

View File

@@ -32,6 +32,7 @@
#include <cstddef>
#include <cstdint>
#include <type_traits>
#include <utility>
namespace godot {