From eb9079c49c91232f5d846dc15264aebf710aab8d Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 27 Sep 2014 13:13:27 +0100 Subject: [PATCH] Remove use of deprecated TR1 library. --- include/boost/algorithm/searching/detail/bm_traits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/algorithm/searching/detail/bm_traits.hpp b/include/boost/algorithm/searching/detail/bm_traits.hpp index 9c25540..b39e539 100644 --- a/include/boost/algorithm/searching/detail/bm_traits.hpp +++ b/include/boost/algorithm/searching/detail/bm_traits.hpp @@ -21,7 +21,7 @@ #include #ifdef BOOST_NO_CXX11_HDR_UNORDERED_MAP -#include +#include #else #include #endif @@ -40,7 +40,7 @@ namespace boost { namespace algorithm { namespace detail { class skip_table { private: #ifdef BOOST_NO_CXX11_HDR_UNORDERED_MAP - typedef std::tr1::unordered_map skip_map; + typedef boost::unordered_map skip_map; #else typedef std::unordered_map skip_map; #endif