diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-06 13:30:17 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-06 13:37:15 +0200 |
| commit | 3534cd206bedef5ea75302d9abf879b15d1df89c (patch) | |
| tree | 977f646ae1282ff7f539d2a524d1e354bfcf465d /test/path-search.cpp | |
| parent | 4d6f747c4b8287e042363264a47265848ca2d92c (diff) | |
test: speed up compile time
Removes implicit includes to <windows.h> and <cr/StringView.h> from all
files.
Goes from 30 to 20 seconds.
Diffstat (limited to 'test/path-search.cpp')
| -rw-r--r-- | test/path-search.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/path-search.cpp b/test/path-search.cpp index 90accd3a..0ac6cefd 100644 --- a/test/path-search.cpp +++ b/test/path-search.cpp @@ -241,7 +241,7 @@ void test_bbox() using enum rotation; constexpr auto ch = chunk_coords_{0, 0, 0}; auto w = world(); - auto& c = test_app::make_test_chunk(w, ch); + auto& c = Test::make_test_chunk(w, ch); constexpr auto is_passable_NESW = [](chunk& c, Vector2i coord, std::array<bool, 4> dirs) { @@ -342,7 +342,7 @@ void test_bbox() } // namespace -void test_app::test_astar() +void Test::test_astar() { test_bbox(); } |
