File tree 1 file changed +4
-1
lines changed
include/dice/template-library
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,10 @@ namespace dice::template_library {
18
18
* An allocation will be placed into the first bucket where it can fit.
19
19
* Allocations that do not fit into any bucket are fulfilled with calls to `new`.
20
20
*
21
- * @tparam bucket_sizes allocation sizes (in bytes) for the underlying arenas
21
+ * @tparam bucket_sizes allocation sizes for individual elements (in bytes) for the underlying arenas.
22
+ * Each size provided here is used to configure the element size of a single arena.
23
+ * Importantly, it is **not** the arena chunk size, rather it is the size of elements being placed into the arena.
24
+ * The chunk size itself cannot be configured, it is automatically determined by boost::pool.
22
25
*/
23
26
template <size_t ...bucket_sizes>
24
27
struct pool ;
You can’t perform that action at this time.
0 commit comments