From 821a2bfb457d2c4b08d63e1b3ab644d9bc68231d Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sun, 3 Dec 2023 09:45:09 +0100 Subject: [PATCH] made epoch array smaller --- include/boost/unordered/detail/foa/concurrent_table.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa/concurrent_table.hpp b/include/boost/unordered/detail/foa/concurrent_table.hpp index db305380..4e4abf49 100644 --- a/include/boost/unordered/detail/foa/concurrent_table.hpp +++ b/include/boost/unordered/detail/foa/concurrent_table.hpp @@ -973,7 +973,7 @@ private: #if defined(BOOST_UNORDERED_LATCH_FREE) using epoch_type=std::atomic; - using epoch_array=cache_aligned_array; // TODO: adapt 128 to the machine + using epoch_array=cache_aligned_array; // TODO: adapt 16 to the machine #endif #if defined(BOOST_UNORDERED_LATCH_FREE)