From fbe5262d7b90f307893e347beb00766fbd71ac86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klaim=20=28Jo=C3=ABl=20Lamotte=29?= <142265+Klaim@users.noreply.github.com> Date: Fri, 1 Aug 2025 16:00:44 +0200 Subject: [PATCH] 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. --- include/godot_cpp/core/defs.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/godot_cpp/core/defs.hpp b/include/godot_cpp/core/defs.hpp index 9395f201..fddfa51d 100644 --- a/include/godot_cpp/core/defs.hpp +++ b/include/godot_cpp/core/defs.hpp @@ -32,6 +32,7 @@ #include #include +#include #include namespace godot {