We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24d79ab commit 1c8ae25Copy full SHA for 1c8ae25
1 file changed
include/godot_cpp/core/class_db.hpp
@@ -44,7 +44,7 @@
44
// Needs to come after method_bind and object have been included.
45
#include <godot_cpp/variant/callable_method_pointer.hpp>
46
47
-#include <list>
+#include <godot_cpp/templates/list.hpp>
48
#include <mutex>
49
#include <set>
50
#include <string>
@@ -65,7 +65,7 @@ namespace godot {
65
66
struct MethodDefinition {
67
StringName name;
68
- std::list<StringName> args;
+ List<StringName> args;
69
MethodDefinition() {}
70
MethodDefinition(StringName p_name) :
71
name(p_name) {}
0 commit comments