summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/path-search.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/path-search.cpp b/test/path-search.cpp
index 99a2b0a8..4541d3f6 100644
--- a/test/path-search.cpp
+++ b/test/path-search.cpp
@@ -11,7 +11,6 @@
namespace floormat {
using namespace floormat::detail_astar;
-using pred = path_search::pred;
using detail_astar::bbox;
namespace {
@@ -176,7 +175,7 @@ void test_bbox()
};
constexpr auto neighbors = [](world& w, chunk_coords_ ch, Vector2i pos) {
- return neighbor_tiles(w, { ch, pos }, {}, (object_id)-1, path_search::never_continue());
+ return neighbor_tiles(w, { ch, pos }, {}, (object_id)-1, never_continue());
};
const auto wall = loader.invalid_wall_atlas().atlas;