Move includes to the header which they're used in.

[SVN r54140]
This commit is contained in:
Daniel James
2009-06-21 09:41:30 +00:00
parent ac31c7e33c
commit ebf01f20ca
2 changed files with 8 additions and 8 deletions

View File

@@ -14,6 +14,14 @@
# pragma once
#endif
#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
#include <boost/type_traits/is_array.hpp>
#endif
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
#include <boost/type_traits/is_const.hpp>
#endif
namespace boost
{

View File

@@ -21,14 +21,6 @@
#include <boost/type_traits/is_pointer.hpp>
#endif
#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
#include <boost/type_traits/is_array.hpp>
#endif
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
#include <boost/type_traits/is_const.hpp>
#endif
namespace boost
{
std::size_t hash_value(bool);