summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dijkstra.cpp2
-rw-r--r--src/search-astar.hpp (renamed from src/astar.hpp)0
-rw-r--r--src/search.cpp2
3 files changed, 2 insertions, 2 deletions
diff --git a/src/dijkstra.cpp b/src/dijkstra.cpp
index 1f353e30..15232f90 100644
--- a/src/dijkstra.cpp
+++ b/src/dijkstra.cpp
@@ -1,4 +1,4 @@
-#include "astar.hpp"
+#include "search-astar.hpp"
#include "search-bbox.hpp"
#include "compat/format.hpp"
#include "compat/vector-wrapper.hpp"
diff --git a/src/astar.hpp b/src/search-astar.hpp
index 7c48c5db..7c48c5db 100644
--- a/src/astar.hpp
+++ b/src/search-astar.hpp
diff --git a/src/search.cpp b/src/search.cpp
index 9f497134..f879260b 100644
--- a/src/search.cpp
+++ b/src/search.cpp
@@ -1,6 +1,6 @@
#include "search.hpp"
#include "search-bbox.hpp"
-#include "astar.hpp"
+#include "search-astar.hpp"
#include "global-coords.hpp"
#include "world.hpp"
#include "pass-mode.hpp"