From 19abcac32009d58450d80add39c5b1d5e7d8a993 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 12 Jul 2024 22:14:44 +0200 Subject: w --- src/handle-pool.hpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/handle-pool.hpp') diff --git a/src/handle-pool.hpp b/src/handle-pool.hpp index da7a2538..2721f094 100644 --- a/src/handle-pool.hpp +++ b/src/handle-pool.hpp @@ -3,14 +3,12 @@ #include #include -namespace floormat::Handle { - -template class Page; +namespace floormat::impl_handle { template class Pool { - friend class Handle; + friend class impl_handle; static Pointer> make_pool(); static Page& find_page(); @@ -30,7 +28,7 @@ public: requires requires (Xs&&... xs) { Obj{forward(xs)...}; } - static Handle make_object(Xs&&... xs); + static impl_handle make_object(Xs&&... xs); }; -} // namespace floormat::Handle +} // namespace floormat::impl_handle -- cgit v1.2.3