We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba2fbe commit d11cfd2Copy full SHA for d11cfd2
1 file changed
include/godot_cpp/core/class_db.hpp
@@ -45,7 +45,7 @@
45
#include <godot_cpp/variant/callable_method_pointer.hpp>
46
47
#include <godot_cpp/templates/a_hash_map.hpp>
48
-#include <list>
+#include <godot_cpp/templates/list.hpp>
49
#include <mutex>
50
#include <set>
51
@@ -55,7 +55,7 @@ namespace godot {
55
56
struct MethodDefinition {
57
StringName name;
58
- std::list<StringName> args;
+ List<StringName> args;
59
MethodDefinition() {}
60
MethodDefinition(StringName p_name) :
61
name(p_name) {}
0 commit comments