diff options
author | David Snopek <dsnopek@gmail.com> | 2024-06-25 09:43:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 09:43:17 -0500 |
commit | 316dde80ba7637b3dd0a48b4a841f5a2366ddf41 (patch) | |
tree | 0a636eed076265ef60abfaa81474ea458e8aa299 /test | |
parent | 7d7799b56ed7dfdae1454f246a98cf35601cc053 (diff) | |
parent | 999018e7d1a311c261c052ba81150885208153e6 (diff) | |
download | redot-cpp-316dde80ba7637b3dd0a48b4a841f5a2366ddf41.tar.gz |
Merge pull request #1505 from Repiteo/include-formatting
Fix `#include` formatting
Diffstat (limited to 'test')
-rw-r--r-- | test/src/tests.h | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/test/src/tests.h b/test/src/tests.h index a615dc1..55835fc 100644 --- a/test/src/tests.h +++ b/test/src/tests.h @@ -6,23 +6,24 @@ #ifndef TESTS_H #define TESTS_H -#include "godot_cpp/templates/cowdata.hpp" -#include "godot_cpp/templates/hash_map.hpp" -#include "godot_cpp/templates/hash_set.hpp" -#include "godot_cpp/templates/hashfuncs.hpp" -#include "godot_cpp/templates/list.hpp" -#include "godot_cpp/templates/pair.hpp" -#include "godot_cpp/templates/rb_map.hpp" -#include "godot_cpp/templates/rb_set.hpp" -#include "godot_cpp/templates/rid_owner.hpp" -#include "godot_cpp/templates/safe_refcount.hpp" -#include "godot_cpp/templates/search_array.hpp" -#include "godot_cpp/templates/self_list.hpp" -#include "godot_cpp/templates/sort_array.hpp" -#include "godot_cpp/templates/spin_lock.hpp" -#include "godot_cpp/templates/thread_work_pool.hpp" -#include "godot_cpp/templates/vector.hpp" -#include "godot_cpp/templates/vmap.hpp" -#include "godot_cpp/templates/vset.hpp" +#include <godot_cpp/templates/cowdata.hpp> +#include <godot_cpp/templates/hash_map.hpp> +#include <godot_cpp/templates/hash_set.hpp> +#include <godot_cpp/templates/hashfuncs.hpp> +#include <godot_cpp/templates/list.hpp> +#include <godot_cpp/templates/local_vector.hpp> +#include <godot_cpp/templates/pair.hpp> +#include <godot_cpp/templates/rb_map.hpp> +#include <godot_cpp/templates/rb_set.hpp> +#include <godot_cpp/templates/rid_owner.hpp> +#include <godot_cpp/templates/safe_refcount.hpp> +#include <godot_cpp/templates/search_array.hpp> +#include <godot_cpp/templates/self_list.hpp> +#include <godot_cpp/templates/sort_array.hpp> +#include <godot_cpp/templates/spin_lock.hpp> +#include <godot_cpp/templates/thread_work_pool.hpp> +#include <godot_cpp/templates/vector.hpp> +#include <godot_cpp/templates/vmap.hpp> +#include <godot_cpp/templates/vset.hpp> #endif // TESTS_H |