From ebf01f20cac8bbec8c1bbc1a11e89a5e5921e102 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 21 Jun 2009 09:41:30 +0000 Subject: [PATCH] Move includes to the header which they're used in. [SVN r54140] --- include/boost/functional/hash/extensions.hpp | 8 ++++++++ include/boost/functional/hash/hash.hpp | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/boost/functional/hash/extensions.hpp b/include/boost/functional/hash/extensions.hpp index 02f8bbb..c289056 100644 --- a/include/boost/functional/hash/extensions.hpp +++ b/include/boost/functional/hash/extensions.hpp @@ -14,6 +14,14 @@ # pragma once #endif +#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) +#include +#endif + +#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) +#include +#endif + namespace boost { diff --git a/include/boost/functional/hash/hash.hpp b/include/boost/functional/hash/hash.hpp index 6f8b313..3654cbb 100644 --- a/include/boost/functional/hash/hash.hpp +++ b/include/boost/functional/hash/hash.hpp @@ -21,14 +21,6 @@ #include #endif -#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) -#include -#endif - -#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) -#include -#endif - namespace boost { std::size_t hash_value(bool);