From d11cfd2b2fa3fb99aa16f222ebdd6f60f6049fd4 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 57a2f901..1eaa2fa0 100644 --- a/include/godot_cpp/core/class_db.hpp +++ b/include/godot_cpp/core/class_db.hpp @@ -45,7 +45,7 @@ #include #include -#include +#include #include #include @@ -55,7 +55,7 @@ namespace godot { struct MethodDefinition { StringName name; - std::list args; + List args; MethodDefinition() {} MethodDefinition(StringName p_name) : name(p_name) {}