From 8d23b88febb53eff525d5ec9e2aafe842903c982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 8 Feb 2026 05:20:01 +0100 Subject: [PATCH] Change footnote for deque and block_size --- doc/container.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/container.qbk b/doc/container.qbk index f745ddd..168819a 100644 --- a/doc/container.qbk +++ b/doc/container.qbk @@ -1347,14 +1347,14 @@ This tables shows the number of characters (excluding the null terminator) that [endsect] -[section:deque_blocks `deque` implementation block/segment size comparison ] +[section:deque_blocks `deque` implementation block/segment size comparison] `deque` implementations are based on a segmented array of blocks, and the block size is an important parameter that affects performance. This table shows the block size in bytes for `deque` implementations across major implementations and Boost.Container. [table:block_sizes Deque Block Sizes [[Implementation] [Block Size in bytes] ] -[[Boost.Container] [512 (32-bit) / 1024 (64-bit) [footnote Boost.Container has an option to select the [classref boost::container::block_size block_size] ] ] ] +[[Boost.Container] [512 (32-bit) / 1024 (64-bit) [footnote [classref boost::container::deque deque] & [classref boost::container::segtor segtor] have an option to select the [classref boost::container::block_size block_size] ] ] ] [[libstdc++ (GCC)] [512 ] ] [[libc++ (Clang)] [4096] ] [[Microsoft STL] [16] ]