aboutsummaryrefslogtreecommitdiff
path: root/BreadthFirstPathfinder.h
diff options
context:
space:
mode:
Diffstat (limited to 'BreadthFirstPathfinder.h')
-rw-r--r--BreadthFirstPathfinder.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/BreadthFirstPathfinder.h b/BreadthFirstPathfinder.h
index c8b9fe5..3b1c75c 100644
--- a/BreadthFirstPathfinder.h
+++ b/BreadthFirstPathfinder.h
@@ -6,13 +6,11 @@
class BreadthFirstPathfinder : public Pathfinder {
using Pathfinder::Pathfinder;
-
public:
virtual void find_between(const XY &, const XY &);
private:
- XY end;
-
std::vector<Path> find_step(const std::vector<Path> &);
+ XY end;
};