aboutsummaryrefslogtreecommitdiffstats
path: root/include/astar.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/astar.hpp')
-rw-r--r--include/astar.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/astar.hpp b/include/astar.hpp
index 107b3c1..5cbf4b4 100644
--- a/include/astar.hpp
+++ b/include/astar.hpp
@@ -28,7 +28,7 @@ public:
void recreate_path(Node n);
private:
- PriorityQueue<Node> open_set;
+ PriorityQueue open_set;
Node *closed_set;
int *graph;