From 35a55238a735f0f0eb45e94bf3c1f69dc711d617 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Mon, 13 Jan 2025 11:20:30 +0100 Subject: [PATCH] Fix documentation for trim_all and trim_fill --- include/boost/algorithm/string/trim_all.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/boost/algorithm/string/trim_all.hpp b/include/boost/algorithm/string/trim_all.hpp index a616f7f33..94f2522bc 100644 --- a/include/boost/algorithm/string/trim_all.hpp +++ b/include/boost/algorithm/string/trim_all.hpp @@ -108,7 +108,6 @@ namespace boost { \param Input An input sequence \param Loc A locale used for 'space' classification - \return A trimmed copy of the input */ template inline void trim_all(SequenceT& Input, const std::locale& Loc =std::locale()) @@ -191,7 +190,6 @@ namespace boost { \param Input An input sequence \param Fill A string used to fill the inner spaces \param Loc A locale used for 'space' classification - \return A trimmed copy of the input */ template inline void trim_fill(SequenceT& Input, const RangeT& Fill, const std::locale& Loc =std::locale())