From d8131f641c6fd3b68351ea74d0d7d91e473a732e Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Mon, 22 Sep 2025 12:26:21 +0200 Subject: [PATCH] Add a \param paragraph to the documentation of find_first_off( size_type ) The meaning of the parameter was clear from the \return paragraph, but, without an explicit \param paragraph, MrDocs would show the documentation of size_type as documentation of the parameter. --- include/boost/dynamic_bitset/dynamic_bitset.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/dynamic_bitset/dynamic_bitset.hpp b/include/boost/dynamic_bitset/dynamic_bitset.hpp index 7d60583..8b77bc9 100644 --- a/include/boost/dynamic_bitset/dynamic_bitset.hpp +++ b/include/boost/dynamic_bitset/dynamic_bitset.hpp @@ -1265,6 +1265,9 @@ public: //! Finds the first unset bit in `*this` with an index >= `pos`, //! if any. //! + //! \param pos The lower bound (inclusively) to start the search + //! from. + //! //! \return //! The lowest index `i` greater than or equal to `pos` such //! that bit `i` is unset in `*this`, or `npos` if no such index