From 50a211523642530e718c6bf1dcf61df344a98883 Mon Sep 17 00:00:00 2001 From: samuela Date: Tue, 20 Mar 2018 17:50:04 -0700 Subject: [PATCH 1/4] docstring fix for `first_finder` --- include/boost/algorithm/string/finder.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/boost/algorithm/string/finder.hpp b/include/boost/algorithm/string/finder.hpp index 93f7ec3..0273b33 100644 --- a/include/boost/algorithm/string/finder.hpp +++ b/include/boost/algorithm/string/finder.hpp @@ -43,7 +43,6 @@ namespace boost { The result is given as an \c iterator_range delimiting the match. \param Search A substring to be searched for. - \param Comp An element comparison predicate \return An instance of the \c first_finder object */ template From d6c8b271b369730f6c6f8b3f536789888867e123 Mon Sep 17 00:00:00 2001 From: samuela Date: Tue, 20 Mar 2018 17:53:09 -0700 Subject: [PATCH 2/4] remove other incorrect docstring params --- include/boost/algorithm/string/finder.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/boost/algorithm/string/finder.hpp b/include/boost/algorithm/string/finder.hpp index 0273b33..61f6e41 100644 --- a/include/boost/algorithm/string/finder.hpp +++ b/include/boost/algorithm/string/finder.hpp @@ -83,7 +83,6 @@ namespace boost { The result is given as an \c iterator_range delimiting the match. \param Search A substring to be searched for. - \param Comp An element comparison predicate \return An instance of the \c last_finder object */ template @@ -123,7 +122,6 @@ namespace boost { \param Search A substring to be searched for. \param Nth An index of the match to be find - \param Comp An element comparison predicate \return An instance of the \c nth_finder object */ template @@ -229,7 +227,6 @@ namespace boost { \param Begin Beginning of the range \param End End of the range - \param Range The range. \return An instance of the \c range_finger object */ template< typename ForwardIteratorT > From aa8cce5bb473b8054f3f1d58e2717c9cf7886260 Mon Sep 17 00:00:00 2001 From: samuela Date: Tue, 20 Mar 2018 17:57:58 -0700 Subject: [PATCH 3/4] Fix clang "parameter not found" warning --- include/boost/algorithm/string/formatter.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/algorithm/string/formatter.hpp b/include/boost/algorithm/string/formatter.hpp index de8681b..78325a4 100644 --- a/include/boost/algorithm/string/formatter.hpp +++ b/include/boost/algorithm/string/formatter.hpp @@ -83,7 +83,7 @@ namespace boost { template inline detail::empty_formatF< BOOST_STRING_TYPENAME range_value::type> - empty_formatter(const RangeT&) + empty_formatter(const RangeT& Input) { return detail::empty_formatF< BOOST_STRING_TYPENAME range_value::type>(); From c34713b9835dab68853b1a96c254e2539ee02597 Mon Sep 17 00:00:00 2001 From: Samuel Ainsworth Date: Tue, 20 Mar 2018 19:01:56 -0700 Subject: [PATCH 4/4] Revert "Fix clang "parameter not found" warning" This reverts commit aa8cce5bb473b8054f3f1d58e2717c9cf7886260. --- include/boost/algorithm/string/formatter.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/algorithm/string/formatter.hpp b/include/boost/algorithm/string/formatter.hpp index 78325a4..de8681b 100644 --- a/include/boost/algorithm/string/formatter.hpp +++ b/include/boost/algorithm/string/formatter.hpp @@ -83,7 +83,7 @@ namespace boost { template inline detail::empty_formatF< BOOST_STRING_TYPENAME range_value::type> - empty_formatter(const RangeT& Input) + empty_formatter(const RangeT&) { return detail::empty_formatF< BOOST_STRING_TYPENAME range_value::type>();