summaryrefslogtreecommitdiffhomepage
path: root/src/search-node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/search-node.hpp')
-rw-r--r--src/search-node.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/search-node.hpp b/src/search-node.hpp
index ebe33b9a..68d68605 100644
--- a/src/search-node.hpp
+++ b/src/search-node.hpp
@@ -7,18 +7,18 @@
namespace floormat {
+template<typename T> struct path_search_result_pool_access;
+
struct path_search_result::node
{
friend struct path_search_result;
- friend struct test_app;
+ template<typename T> friend struct path_search_result_pool_access;
node() noexcept;
fm_DECLARE_DELETED_COPY_ASSIGNMENT(node);
fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT_(node);
std::vector<point> vec;
-
-private:
Pointer<node> _next;
};