Explorar o código

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.
Klaim (Joël Lamotte) hai 1 mes
pai
achega
fbe5262d7b
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      include/godot_cpp/core/defs.hpp

+ 1 - 0
include/godot_cpp/core/defs.hpp

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