aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2025-05-06 11:35:11 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2025-05-06 11:53:49 +0300
commiteb9f7c3ff5a0712b5e711cb88e12f1dcb68ad612 (patch)
tree74a3329caeee0992ec5d2830ddcc9f0f12d09e0f /contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch
parentd3153b6102d6495f4af17e5d35964a0b871f4542 (diff)
downloadydb-eb9f7c3ff5a0712b5e711cb88e12f1dcb68ad612.tar.gz
Update contrib/restricted/boost/array to 1.88.0
commit_hash:0175a76a95ef74c349448549cc756046f4ebec70
Diffstat (limited to 'contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch')
-rw-r--r--contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch b/contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch
new file mode 100644
index 00000000000..b651dab0989
--- /dev/null
+++ b/contrib/restricted/boost/algorithm/patches/pr124-add-missing-include.patch
@@ -0,0 +1,21 @@
+From 7012619c8056b1b30f88bc57dd39c80c0018214f Mon Sep 17 00:00:00 2001
+From: Yuriy Chernyshov <thegeorg@yandex-team.com>
+Date: Mon, 5 May 2025 18:01:59 +0200
+Subject: [PATCH] Add missing include
+
+---
+ include/boost/algorithm/searching/boyer_moore.hpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/boost/algorithm/searching/boyer_moore.hpp b/include/boost/algorithm/searching/boyer_moore.hpp
+index 80a5a4474..e3c00105c 100644
+--- a/include/boost/algorithm/searching/boyer_moore.hpp
++++ b/include/boost/algorithm/searching/boyer_moore.hpp
+@@ -10,6 +10,7 @@
+ #ifndef BOOST_ALGORITHM_BOYER_MOORE_SEARCH_HPP
+ #define BOOST_ALGORITHM_BOYER_MOORE_SEARCH_HPP
+
++#include <algorithm> // for std::reverse_copy
+ #include <iterator> // for std::iterator_traits
+
+ #include <boost/config.hpp>