From d99f5d5c76b667ed487eb1e60684d109a5eebaf2 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 26 Feb 2026 00:40:47 +1100 Subject: [PATCH] xo-arena: fix paths for when xo-arena is a nix-build dep --- include/xo/arena/hashmap/DArenaHashMapIterator.hpp | 2 +- include/xo/arena/hashmap/HashMapStore.hpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/xo/arena/hashmap/DArenaHashMapIterator.hpp b/include/xo/arena/hashmap/DArenaHashMapIterator.hpp index ea87c0c..77c450d 100644 --- a/include/xo/arena/hashmap/DArenaHashMapIterator.hpp +++ b/include/xo/arena/hashmap/DArenaHashMapIterator.hpp @@ -5,7 +5,7 @@ #pragma once -#include "hashmap/DArenaHashMapUtil.hpp" +#include namespace xo { namespace map { diff --git a/include/xo/arena/hashmap/HashMapStore.hpp b/include/xo/arena/hashmap/HashMapStore.hpp index 6393bb0..23b9d31 100644 --- a/include/xo/arena/hashmap/HashMapStore.hpp +++ b/include/xo/arena/hashmap/HashMapStore.hpp @@ -5,8 +5,8 @@ #pragma once -#include "hashmap/DArenaHashMapUtil.hpp" -#include "hashmap/ControlGroup.hpp" +#include +#include namespace xo { namespace map { @@ -52,7 +52,7 @@ namespace xo { float load_factor() const noexcept { return size_ / static_cast(n_slot_); } void visit_pools(const MemorySizeVisitor & visitor) const { - // complexity here in service of HashMapStore-specific value for MemorySizeInfo.used + // complexity here in service of HashMapStore-specific value for MemorySizeInfo.used MemorySizeInfo ctl_info; MemorySizeInfo slot_info;