From f49e3477728054ec36d6bc40caaa8fe0c205f904 Mon Sep 17 00:00:00 2001 From: Nathan Ridge Date: Thu, 13 Dec 2012 07:48:50 +0000 Subject: [PATCH] [range] added missing includes to any_range.hpp and related files; fixes #5603 [SVN r81890] --- include/boost/range/detail/any_iterator.hpp | 2 ++ include/boost/range/detail/any_iterator_interface.hpp | 6 +++++- include/boost/range/detail/any_iterator_wrapper.hpp | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/include/boost/range/detail/any_iterator.hpp b/include/boost/range/detail/any_iterator.hpp index 5705ff0..42991cc 100644 --- a/include/boost/range/detail/any_iterator.hpp +++ b/include/boost/range/detail/any_iterator.hpp @@ -14,12 +14,14 @@ #include #include #include +#include #include #include #include #include #include #include +#include namespace boost { diff --git a/include/boost/range/detail/any_iterator_interface.hpp b/include/boost/range/detail/any_iterator_interface.hpp index d8f4de7..2451491 100644 --- a/include/boost/range/detail/any_iterator_interface.hpp +++ b/include/boost/range/detail/any_iterator_interface.hpp @@ -11,8 +11,12 @@ #define BOOST_RANGE_DETAIL_ANY_ITERATOR_INTERFACE_HPP_INCLUDED #include -#include +#include #include +#include +#include +#include +#include namespace boost { diff --git a/include/boost/range/detail/any_iterator_wrapper.hpp b/include/boost/range/detail/any_iterator_wrapper.hpp index b5313a7..502e3e8 100644 --- a/include/boost/range/detail/any_iterator_wrapper.hpp +++ b/include/boost/range/detail/any_iterator_wrapper.hpp @@ -10,8 +10,10 @@ #ifndef BOOST_RANGE_DETAIL_ANY_ITERATOR_WRAPPER_HPP_INCLUDED #define BOOST_RANGE_DETAIL_ANY_ITERATOR_WRAPPER_HPP_INCLUDED +#include #include #include +#include namespace boost {