summaryrefslogtreecommitdiffhomepage
path: root/src/path-search.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-09 06:44:23 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-09 06:44:23 +0200
commite7518ac6a5e09502219e798841ae9dfa497f32b5 (patch)
treeffac93c231f791cb350965eacd6fb0b46d6c691f /src/path-search.hpp
parentabb20d7ad61e0b6b8c71f6a0f68e00b74ede9305 (diff)
src/ps: fix #if
Diffstat (limited to 'src/path-search.hpp')
-rw-r--r--src/path-search.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path-search.hpp b/src/path-search.hpp
index 232410d5..8a6dd768 100644
--- a/src/path-search.hpp
+++ b/src/path-search.hpp
@@ -90,7 +90,7 @@ private:
#define FM_ASTAR_NO_EDGE_CACHE 1
-#ifndef FM_ASTAR_NO_EDGE_CACHE
+#if !FM_ASTAR_NO_EDGE_CACHE
struct edge
{
global_coords from, to;