add dev-libs/boost with static-libs support via an additional ebuild
[nodoc-overlay.git] / dev-libs / boost / files / boost-1.88.0-algorithm-reverse_copy.patch
1 Patch from: https://github.com/boostorg/algorithm/pull/124
2 Fixed patch paths to match boost distribution.
3
4 From 7012619c8056b1b30f88bc57dd39c80c0018214f Mon Sep 17 00:00:00 2001
5 From: Yuriy Chernyshov <thegeorg@yandex-team.com>
6 Date: Mon, 5 May 2025 18:01:59 +0200
7 Subject: [PATCH] Add missing include
8
9 ---
10 include/boost/algorithm/searching/boyer_moore.hpp | 1 +
11 1 file changed, 1 insertion(+)
12
13 diff --git a/include/boost/algorithm/searching/boyer_moore.hpp b/include/boost/algorithm/searching/boyer_moore.hpp
14 index 80a5a4474..e3c00105c 100644
15 --- a/boost/algorithm/searching/boyer_moore.hpp
16 +++ b/boost/algorithm/searching/boyer_moore.hpp
17 @@ -10,6 +10,7 @@
18 #ifndef BOOST_ALGORITHM_BOYER_MOORE_SEARCH_HPP
19 #define BOOST_ALGORITHM_BOYER_MOORE_SEARCH_HPP
20
21 +#include <algorithm> // for std::reverse_copy
22 #include <iterator> // for std::iterator_traits
23
24 #include <boost/config.hpp>