Skip to content

Commit 1c8ae25

Browse files
committed
Replace std::list with List
1 parent 24d79ab commit 1c8ae25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/godot_cpp/core/class_db.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
// Needs to come after method_bind and object have been included.
4545
#include <godot_cpp/variant/callable_method_pointer.hpp>
4646

47-
#include <list>
47+
#include <godot_cpp/templates/list.hpp>
4848
#include <mutex>
4949
#include <set>
5050
#include <string>
@@ -65,7 +65,7 @@ namespace godot {
6565

6666
struct MethodDefinition {
6767
StringName name;
68-
std::list<StringName> args;
68+
List<StringName> args;
6969
MethodDefinition() {}
7070
MethodDefinition(StringName p_name) :
7171
name(p_name) {}

0 commit comments

Comments
 (0)