From db09342af865ac5df7d4c35f25115ed39fbd0ddd Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 24 Feb 2024 05:16:58 +0100 Subject: src: split bbox into its own header --- test/dijkstra.cpp | 1 + test/path-search.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/dijkstra.cpp b/test/dijkstra.cpp index b608f5fe..14015ade 100644 --- a/test/dijkstra.cpp +++ b/test/dijkstra.cpp @@ -1,5 +1,6 @@ #include "app.hpp" #include "src/astar.hpp" +#include "src/world.hpp" #include "loader/loader.hpp" #include "loader/wall-cell.hpp" #include diff --git a/test/path-search.cpp b/test/path-search.cpp index caaa55f2..99a2b0a8 100644 --- a/test/path-search.cpp +++ b/test/path-search.cpp @@ -5,14 +5,14 @@ #include "loader/wall-cell.hpp" #include "src/world.hpp" #include "src/scenery.hpp" -#include "src/path-search.hpp" +#include "src/path-search-bbox.hpp" #include namespace floormat { using namespace floormat::detail_astar; -template using bbox = path_search::bbox; using pred = path_search::pred; +using detail_astar::bbox; namespace { -- cgit v1.2.3