Skip to content

Commit 999018e

Browse files
committed
Fix #include formatting
1 parent c414c2b commit 999018e

File tree

2 files changed

+23
-22
lines changed

2 files changed

+23
-22
lines changed

include/godot_cpp/templates/local_vector.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
#ifndef GODOT_LOCAL_VECTOR_HPP
3232
#define GODOT_LOCAL_VECTOR_HPP
3333

34-
#include "godot_cpp/core/error_macros.hpp"
35-
#include "godot_cpp/core/memory.hpp"
36-
#include "godot_cpp/templates/sort_array.hpp"
37-
#include "godot_cpp/templates/vector.hpp"
34+
#include <godot_cpp/core/error_macros.hpp>
35+
#include <godot_cpp/core/memory.hpp>
36+
#include <godot_cpp/templates/sort_array.hpp>
37+
#include <godot_cpp/templates/vector.hpp>
3838

3939
#include <initializer_list>
4040
#include <type_traits>

test/src/tests.h

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,24 @@
66
#ifndef TESTS_H
77
#define TESTS_H
88

9-
#include "godot_cpp/templates/cowdata.hpp"
10-
#include "godot_cpp/templates/hash_map.hpp"
11-
#include "godot_cpp/templates/hash_set.hpp"
12-
#include "godot_cpp/templates/hashfuncs.hpp"
13-
#include "godot_cpp/templates/list.hpp"
14-
#include "godot_cpp/templates/pair.hpp"
15-
#include "godot_cpp/templates/rb_map.hpp"
16-
#include "godot_cpp/templates/rb_set.hpp"
17-
#include "godot_cpp/templates/rid_owner.hpp"
18-
#include "godot_cpp/templates/safe_refcount.hpp"
19-
#include "godot_cpp/templates/search_array.hpp"
20-
#include "godot_cpp/templates/self_list.hpp"
21-
#include "godot_cpp/templates/sort_array.hpp"
22-
#include "godot_cpp/templates/spin_lock.hpp"
23-
#include "godot_cpp/templates/thread_work_pool.hpp"
24-
#include "godot_cpp/templates/vector.hpp"
25-
#include "godot_cpp/templates/vmap.hpp"
26-
#include "godot_cpp/templates/vset.hpp"
9+
#include <godot_cpp/templates/cowdata.hpp>
10+
#include <godot_cpp/templates/hash_map.hpp>
11+
#include <godot_cpp/templates/hash_set.hpp>
12+
#include <godot_cpp/templates/hashfuncs.hpp>
13+
#include <godot_cpp/templates/list.hpp>
14+
#include <godot_cpp/templates/local_vector.hpp>
15+
#include <godot_cpp/templates/pair.hpp>
16+
#include <godot_cpp/templates/rb_map.hpp>
17+
#include <godot_cpp/templates/rb_set.hpp>
18+
#include <godot_cpp/templates/rid_owner.hpp>
19+
#include <godot_cpp/templates/safe_refcount.hpp>
20+
#include <godot_cpp/templates/search_array.hpp>
21+
#include <godot_cpp/templates/self_list.hpp>
22+
#include <godot_cpp/templates/sort_array.hpp>
23+
#include <godot_cpp/templates/spin_lock.hpp>
24+
#include <godot_cpp/templates/thread_work_pool.hpp>
25+
#include <godot_cpp/templates/vector.hpp>
26+
#include <godot_cpp/templates/vmap.hpp>
27+
#include <godot_cpp/templates/vset.hpp>
2728

2829
#endif // TESTS_H

0 commit comments

Comments
 (0)