From 2cff357a911b711070a7367a892afb72790fc82b Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Tue, 16 Sep 2025 18:54:46 +0200 Subject: [PATCH] Update the description of bit_appender Reason: dynamic_bitset does have an append_at_right(), now; it's called push_front(). --- include/boost/dynamic_bitset/dynamic_bitset.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/boost/dynamic_bitset/dynamic_bitset.hpp b/include/boost/dynamic_bitset/dynamic_bitset.hpp index e5b7950..a188b23 100644 --- a/include/boost/dynamic_bitset/dynamic_bitset.hpp +++ b/include/boost/dynamic_bitset/dynamic_bitset.hpp @@ -1401,11 +1401,7 @@ private: // // Makes up for the lack of an efficient append at the least // significant end: bits are actually appended "at left" but - // rearranged in the destructor. From the perspective of client - // code, everything works *as if* dynamic_bitset had an - // append_at_right() function (possibly throwing the same - // exceptions as push_back()) except that the function is in - // fact called bit_appender::do_append(). + // rearranged in the destructor. // dynamic_bitset & bs; size_type n;