Replace std::list with List

This commit is contained in:
dementive
2025-09-10 16:57:07 -05:00
parent 9ba2fbe1bf
commit d11cfd2b2f

View File

@ -45,7 +45,7 @@
#include <godot_cpp/variant/callable_method_pointer.hpp>
#include <godot_cpp/templates/a_hash_map.hpp>
#include <list>
#include <godot_cpp/templates/list.hpp>
#include <mutex>
#include <set>
@ -55,7 +55,7 @@ namespace godot {
struct MethodDefinition {
StringName name;
std::list<StringName> args;
List<StringName> args;
MethodDefinition() {}
MethodDefinition(StringName p_name) :
name(p_name) {}