Skip to content

Commit d11cfd2

Browse files
committed
Replace std::list with List
1 parent 9ba2fbe commit d11cfd2

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
@@ -45,7 +45,7 @@
4545
#include <godot_cpp/variant/callable_method_pointer.hpp>
4646

4747
#include <godot_cpp/templates/a_hash_map.hpp>
48-
#include <list>
48+
#include <godot_cpp/templates/list.hpp>
4949
#include <mutex>
5050
#include <set>
5151

@@ -55,7 +55,7 @@ namespace godot {
5555

5656
struct MethodDefinition {
5757
StringName name;
58-
std::list<StringName> args;
58+
List<StringName> args;
5959
MethodDefinition() {}
6060
MethodDefinition(StringName p_name) :
6161
name(p_name) {}

0 commit comments

Comments
 (0)