Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80616 - trunk/boost/algorithm/searching
From: marshall_at_[hidden]
Date: 2012-09-21 10:22:31


Author: marshall
Date: 2012-09-21 10:22:31 EDT (Fri, 21 Sep 2012)
New Revision: 80616
URL: http://svn.boost.org/trac/boost/changeset/80616

Log:
Add missing includes; Refs #7399. Thanks to Hideaki Takei for the catch
Text files modified:
   trunk/boost/algorithm/searching/boyer_moore_horspool.hpp | 5 +++++
   trunk/boost/algorithm/searching/knuth_morris_pratt.hpp | 5 +++++
   2 files changed, 10 insertions(+), 0 deletions(-)

Modified: trunk/boost/algorithm/searching/boyer_moore_horspool.hpp
==============================================================================
--- trunk/boost/algorithm/searching/boyer_moore_horspool.hpp (original)
+++ trunk/boost/algorithm/searching/boyer_moore_horspool.hpp 2012-09-21 10:22:31 EDT (Fri, 21 Sep 2012)
@@ -14,6 +14,11 @@
 
 #include <boost/assert.hpp>
 #include <boost/static_assert.hpp>
+
+#include <boost/range/begin.hpp>
+#include <boost/range/end.hpp>
+
+#include <boost/utility/enable_if.hpp>
 #include <boost/type_traits/is_same.hpp>
 
 #include <boost/algorithm/searching/detail/bm_traits.hpp>

Modified: trunk/boost/algorithm/searching/knuth_morris_pratt.hpp
==============================================================================
--- trunk/boost/algorithm/searching/knuth_morris_pratt.hpp (original)
+++ trunk/boost/algorithm/searching/knuth_morris_pratt.hpp 2012-09-21 10:22:31 EDT (Fri, 21 Sep 2012)
@@ -15,6 +15,11 @@
 
 #include <boost/assert.hpp>
 #include <boost/static_assert.hpp>
+
+#include <boost/range/begin.hpp>
+#include <boost/range/end.hpp>
+
+#include <boost/utility/enable_if.hpp>
 #include <boost/type_traits/is_same.hpp>
 
 #include <boost/algorithm/searching/detail/debugging.hpp>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk