xo-arena: fix paths for when xo-arena is a nix-build dep

This commit is contained in:
Roland Conybeare 2026-02-26 00:40:47 +11:00
commit d99f5d5c76
2 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
#pragma once
#include "hashmap/DArenaHashMapUtil.hpp"
#include <xo/arena/hashmap/DArenaHashMapUtil.hpp>
namespace xo {
namespace map {

View file

@ -5,8 +5,8 @@
#pragma once
#include "hashmap/DArenaHashMapUtil.hpp"
#include "hashmap/ControlGroup.hpp"
#include <xo/arena/hashmap/DArenaHashMapUtil.hpp>
#include <xo/arena/hashmap/ControlGroup.hpp>
namespace xo {
namespace map {
@ -52,7 +52,7 @@ namespace xo {
float load_factor() const noexcept { return size_ / static_cast<float>(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;