From 799af34b8ead5df6e9145fe5be4b6621b68f4c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kalp=20=C3=96zcan?= Date: Wed, 4 Mar 2026 12:29:12 +1100 Subject: [PATCH] Fix `use of undeclared identifier 'set_typed'` in in typed_dictionary.hpp when dictionary.hpp is also included. --- include/godot_cpp/core/defs.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/godot_cpp/core/defs.hpp b/include/godot_cpp/core/defs.hpp index 2eee703c5..02991b148 100644 --- a/include/godot_cpp/core/defs.hpp +++ b/include/godot_cpp/core/defs.hpp @@ -35,6 +35,10 @@ #include #include +#if __has_include() +#include +#endif + namespace godot { #if !defined(GDE_EXPORT)