From d20a68efdb13df9461321047766798ffa265e194 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 27 Jan 2018 11:48:59 +0000 Subject: [PATCH] Move headers into top level of container_hash directory --- .../container_hash/{hash => }/detail/float_functions.hpp | 0 .../boost/container_hash/{hash => }/detail/hash_float.hpp | 4 ++-- include/boost/container_hash/{hash => }/detail/limits.hpp | 0 include/boost/container_hash/{hash => }/extensions.hpp | 2 +- include/boost/container_hash/{hash => }/hash.hpp | 6 +++--- include/boost/container_hash/{hash => }/hash_fwd.hpp | 0 include/boost/functional/hash.hpp | 2 +- include/boost/functional/hash/extensions.hpp | 2 +- include/boost/functional/hash/hash.hpp | 2 +- include/boost/functional/hash/hash_fwd.hpp | 2 +- include/boost/functional/hash_fwd.hpp | 2 +- test/extensions_hpp_test.cpp | 6 +++--- test/hash_float_test.hpp | 4 ++-- test/hash_number_test.cpp | 2 +- 14 files changed, 17 insertions(+), 17 deletions(-) rename include/boost/container_hash/{hash => }/detail/float_functions.hpp (100%) rename include/boost/container_hash/{hash => }/detail/hash_float.hpp (98%) rename include/boost/container_hash/{hash => }/detail/limits.hpp (100%) rename include/boost/container_hash/{hash => }/extensions.hpp (99%) rename include/boost/container_hash/{hash => }/hash.hpp (99%) rename include/boost/container_hash/{hash => }/hash_fwd.hpp (100%) diff --git a/include/boost/container_hash/hash/detail/float_functions.hpp b/include/boost/container_hash/detail/float_functions.hpp similarity index 100% rename from include/boost/container_hash/hash/detail/float_functions.hpp rename to include/boost/container_hash/detail/float_functions.hpp diff --git a/include/boost/container_hash/hash/detail/hash_float.hpp b/include/boost/container_hash/detail/hash_float.hpp similarity index 98% rename from include/boost/container_hash/hash/detail/hash_float.hpp rename to include/boost/container_hash/detail/hash_float.hpp index d0f7f55..f763428 100644 --- a/include/boost/container_hash/hash/detail/hash_float.hpp +++ b/include/boost/container_hash/detail/hash_float.hpp @@ -11,8 +11,8 @@ #pragma once #endif -#include -#include +#include +#include #include #include #include diff --git a/include/boost/container_hash/hash/detail/limits.hpp b/include/boost/container_hash/detail/limits.hpp similarity index 100% rename from include/boost/container_hash/hash/detail/limits.hpp rename to include/boost/container_hash/detail/limits.hpp diff --git a/include/boost/container_hash/hash/extensions.hpp b/include/boost/container_hash/extensions.hpp similarity index 99% rename from include/boost/container_hash/hash/extensions.hpp rename to include/boost/container_hash/extensions.hpp index d8e34db..393b702 100644 --- a/include/boost/container_hash/hash/extensions.hpp +++ b/include/boost/container_hash/extensions.hpp @@ -18,7 +18,7 @@ #pragma once #endif -#include +#include #include #include #include diff --git a/include/boost/container_hash/hash/hash.hpp b/include/boost/container_hash/hash.hpp similarity index 99% rename from include/boost/container_hash/hash/hash.hpp rename to include/boost/container_hash/hash.hpp index 1165977..76de793 100644 --- a/include/boost/container_hash/hash/hash.hpp +++ b/include/boost/container_hash/hash.hpp @@ -16,9 +16,9 @@ #if !defined(BOOST_FUNCTIONAL_HASH_HASH_HPP) #define BOOST_FUNCTIONAL_HASH_HASH_HPP -#include +#include #include -#include +#include #include #include #include @@ -757,5 +757,5 @@ namespace boost #if !defined(BOOST_HASH_NO_EXTENSIONS) \ && !defined(BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP) -#include +#include #endif diff --git a/include/boost/container_hash/hash/hash_fwd.hpp b/include/boost/container_hash/hash_fwd.hpp similarity index 100% rename from include/boost/container_hash/hash/hash_fwd.hpp rename to include/boost/container_hash/hash_fwd.hpp diff --git a/include/boost/functional/hash.hpp b/include/boost/functional/hash.hpp index 6122b35..327a3ec 100644 --- a/include/boost/functional/hash.hpp +++ b/include/boost/functional/hash.hpp @@ -3,4 +3,4 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -#include +#include diff --git a/include/boost/functional/hash/extensions.hpp b/include/boost/functional/hash/extensions.hpp index bd436fb..ab14211 100644 --- a/include/boost/functional/hash/extensions.hpp +++ b/include/boost/functional/hash/extensions.hpp @@ -3,4 +3,4 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -#include +#include diff --git a/include/boost/functional/hash/hash.hpp b/include/boost/functional/hash/hash.hpp index 6122b35..327a3ec 100644 --- a/include/boost/functional/hash/hash.hpp +++ b/include/boost/functional/hash/hash.hpp @@ -3,4 +3,4 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -#include +#include diff --git a/include/boost/functional/hash/hash_fwd.hpp b/include/boost/functional/hash/hash_fwd.hpp index aeffad0..62bc23c 100644 --- a/include/boost/functional/hash/hash_fwd.hpp +++ b/include/boost/functional/hash/hash_fwd.hpp @@ -3,4 +3,4 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -#include +#include diff --git a/include/boost/functional/hash_fwd.hpp b/include/boost/functional/hash_fwd.hpp index aeffad0..62bc23c 100644 --- a/include/boost/functional/hash_fwd.hpp +++ b/include/boost/functional/hash_fwd.hpp @@ -3,4 +3,4 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -#include +#include diff --git a/test/extensions_hpp_test.cpp b/test/extensions_hpp_test.cpp index 54d1054..a388c23 100644 --- a/test/extensions_hpp_test.cpp +++ b/test/extensions_hpp_test.cpp @@ -3,14 +3,14 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -// Check that boost/container_hash/hash/extensions.hpp works okay. +// Check that boost/container_hash/extensions.hpp works okay. // -// It probably should be in boost/container_hash/hash/detail, but since it isn't it +// It probably should be in boost/container_hash/detail, but since it isn't it // should work. #include "./config.hpp" -#include +#include int main() { int x[2] = { 2, 3 }; diff --git a/test/hash_float_test.hpp b/test/hash_float_test.hpp index a73c31f..ab79a12 100644 --- a/test/hash_float_test.hpp +++ b/test/hash_float_test.hpp @@ -14,8 +14,8 @@ #include #include -#include -#include +#include +#include #include #include diff --git a/test/hash_number_test.cpp b/test/hash_number_test.cpp index c78783e..72ab626 100644 --- a/test/hash_number_test.cpp +++ b/test/hash_number_test.cpp @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include "./compile_time.hpp"