From f5436dd6ee0ba080e402a4960c67f3766c14170f Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+liss-h@users.noreply.github.com> Date: Fri, 17 Jan 2025 10:15:31 +0100 Subject: [PATCH] add capacity comment --- include/dice/template-library/pool_allocator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dice/template-library/pool_allocator.hpp b/include/dice/template-library/pool_allocator.hpp index 8aa6313..39f4ba3 100644 --- a/include/dice/template-library/pool_allocator.hpp +++ b/include/dice/template-library/pool_allocator.hpp @@ -21,7 +21,7 @@ namespace dice::template_library { * @tparam bucket_sizes allocation sizes for individual elements (in bytes) for the underlying arenas. * Each size provided here is used to configure the element size of a single arena. * Importantly, it is **not** the arena chunk size, rather it is the size of elements being placed into the arena. - * The chunk size itself cannot be configured, it is automatically determined by boost::pool. + * The chunk size itself as well as the maximum capacity cannot be configured, they are automatically determined by boost::pool. */ template struct pool;