From 1c8ae25a7e77dbbf29bb72120f5b7f678662b3ef Mon Sep 17 00:00:00 2001 From: dementive <87823030+dementive@users.noreply.github.com> Date: Wed, 10 Sep 2025 16:57:07 -0500 Subject: [PATCH] Replace std::list with List --- include/godot_cpp/core/class_db.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/godot_cpp/core/class_db.hpp b/include/godot_cpp/core/class_db.hpp index 262dbecc1..a5d209741 100644 --- a/include/godot_cpp/core/class_db.hpp +++ b/include/godot_cpp/core/class_db.hpp @@ -44,7 +44,7 @@ // Needs to come after method_bind and object have been included. #include -#include +#include #include #include #include @@ -65,7 +65,7 @@ namespace godot { struct MethodDefinition { StringName name; - std::list args; + List args; MethodDefinition() {} MethodDefinition(StringName p_name) : name(p_name) {}