From 95095cf4bb6c3330fcc1fb5fe5f4d139351984b9 Mon Sep 17 00:00:00 2001 From: Benjamin Rodenberg Date: Sun, 23 Jan 2022 12:53:11 +0100 Subject: [PATCH 1/2] Fix typo --- doc/reference/adaptors/map_values.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/reference/adaptors/map_values.qbk b/doc/reference/adaptors/map_values.qbk index 845c9e8..2fc42be 100644 --- a/doc/reference/adaptors/map_values.qbk +++ b/doc/reference/adaptors/map_values.qbk @@ -14,7 +14,7 @@ * [*Precondition:] The `value_type` of the range is an instantiation of `std::pair`. * [*Postcondition:] For all elements `x` in the returned range, `x` is the result of `y.second` where `y` is the corresponding element in the original range. * [*Range Category:] __single_pass_range__ -* [*Range Return Type:] for constant ranges, `boost::select_second_const` otherwise `boost:select_second_mutable` +* [*Range Return Type:] for constant ranges, `boost::select_second_const` otherwise `boost::select_second_mutable` * [*Returned Range Category:] The range category of `rng`. [section:map_values_example map_values example] From 9c783ecbefa65019116cb67f820cb3da0a373af1 Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Tue, 23 Aug 2022 16:00:08 +0100 Subject: [PATCH 2/2] refactor: use core/noncopyable over boost/noncopyable The later is deprecated: ```cpp // The header file at this path is deprecated; // use boost/core/noncopyable.hpp instead. #include ``` --- include/boost/range/detail/any_iterator_buffer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/range/detail/any_iterator_buffer.hpp b/include/boost/range/detail/any_iterator_buffer.hpp index 2bb5d53..9c943de 100644 --- a/include/boost/range/detail/any_iterator_buffer.hpp +++ b/include/boost/range/detail/any_iterator_buffer.hpp @@ -13,7 +13,7 @@ #include #include #include -#include +#include namespace boost {