diff options
Diffstat (limited to 'src/handle-page.hpp')
-rw-r--r-- | src/handle-page.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/handle-page.hpp b/src/handle-page.hpp index dee35a9e..c0397db7 100644 --- a/src/handle-page.hpp +++ b/src/handle-page.hpp @@ -4,7 +4,7 @@ #include <array> #include <cr/BitArray.h> -namespace floormat::Handle { +namespace floormat::impl_handle { template<typename Obj, uint32_t PageSize> struct Item @@ -17,7 +17,7 @@ struct Item template<typename Obj, uint32_t PageSize> class Page { - friend class Handle<Obj, PageSize>; + friend struct Handle<Obj, PageSize>; std::array<Item<Obj, PageSize>, PageSize> storage; BitArray used_map; // todo replace with a rewrite of std::bitset @@ -37,4 +37,4 @@ public: bool is_full(); }; -} // namespace floormat::Handle +} // namespace floormat::impl_handle |