summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/dijkstra.cpp1
-rw-r--r--test/path-search.cpp4
2 files changed, 3 insertions, 2 deletions
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 <Magnum/Math/Functions.h>
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 <Magnum/Math/Functions.h>
namespace floormat {
using namespace floormat::detail_astar;
-template<typename T> using bbox = path_search::bbox<T>;
using pred = path_search::pred;
+using detail_astar::bbox;
namespace {