2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-24 04:02:12 +00:00

Move mpl and fusion from ext/ to ext/boost/

This commit is contained in:
Louis Dionne
2014-07-08 10:13:02 -04:00
parent 41eefb2d29
commit 13b330fa41
23 changed files with 31 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
<% cons = Benchcc::Fusion::Cons.new((0..x).map { |i| "x<#{i}>" }) %>
<%= cons.includes %>
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
template <typename ...>

View File

@@ -1,7 +1,7 @@
<% list = Benchcc::Fusion::List.new((0..x).map { |i| "x<#{i}>" }) %>
<%= list.includes %>
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
template <typename ...>

View File

@@ -1,7 +1,7 @@
<% vector = Benchcc::Fusion::Vector.new((0..x).map { |i| "x<#{i}>" }) %>
<%= vector.includes %>
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
template <typename ...>

View File

@@ -1,4 +1,4 @@
#include <boost/hana/ext/mpl/list.hpp>
#include <boost/hana/ext/boost/mpl/list.hpp>
#include <boost/hana/type.hpp>
<% list = Benchcc::MPL::List.new((0...x).map { |i| "x<#{i}>" }) %>

View File

@@ -1,4 +1,4 @@
#include <boost/hana/ext/mpl/vector.hpp>
#include <boost/hana/ext/boost/mpl/vector.hpp>
#include <boost/hana/type.hpp>
<% vector = Benchcc::MPL::Vector.new((0...x).map { |i| "x<#{i}>" }) %>

View File

@@ -7,8 +7,8 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_EXT_FUSION_VECTOR_HPP
#define BOOST_HANA_EXT_FUSION_VECTOR_HPP
#ifndef BOOST_HANA_EXT_BOOST_FUSION_VECTOR_HPP
#define BOOST_HANA_EXT_BOOST_FUSION_VECTOR_HPP
#include <boost/hana/bool.hpp>
#include <boost/hana/core.hpp>
@@ -88,4 +88,4 @@ namespace boost { namespace hana {
};
}} // end namespace boost::hana
#endif // !BOOST_HANA_EXT_FUSION_VECTOR_HPP
#endif // !BOOST_HANA_EXT_BOOST_FUSION_VECTOR_HPP

View File

@@ -7,8 +7,8 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_EXT_MPL_LIST_HPP
#define BOOST_HANA_EXT_MPL_LIST_HPP
#ifndef BOOST_HANA_EXT_BOOST_MPL_LIST_HPP
#define BOOST_HANA_EXT_BOOST_MPL_LIST_HPP
#include <boost/hana/bool.hpp>
#include <boost/hana/comparable.hpp>
@@ -56,4 +56,4 @@ namespace boost { namespace hana {
};
}} // end namespace boost::hana
#endif // !BOOST_HANA_EXT_MPL_LIST_HPP
#endif // !BOOST_HANA_EXT_BOOST_MPL_LIST_HPP

View File

@@ -7,8 +7,8 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_EXT_MPL_VECTOR_HPP
#define BOOST_HANA_EXT_MPL_VECTOR_HPP
#ifndef BOOST_HANA_EXT_BOOST_MPL_VECTOR_HPP
#define BOOST_HANA_EXT_BOOST_MPL_VECTOR_HPP
#include <boost/hana/bool.hpp>
#include <boost/hana/comparable.hpp>
@@ -56,4 +56,4 @@ namespace boost { namespace hana {
};
}} // end namespace boost::hana
#endif // !BOOST_HANA_EXT_MPL_VECTOR_HPP
#endif // !BOOST_HANA_EXT_BOOST_MPL_VECTOR_HPP

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
#include <boost/hana/core.hpp>

View File

@@ -4,8 +4,8 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_TEST_EXT_FUSION_HELPER_HPP
#define BOOST_HANA_TEST_EXT_FUSION_HELPER_HPP
#ifndef BOOST_HANA_TEST_EXT_BOOST_FUSION_HELPER_HPP
#define BOOST_HANA_TEST_EXT_BOOST_FUSION_HELPER_HPP
#include <boost/hana/list.hpp>
@@ -29,4 +29,4 @@ auto with_nonassociative_forward_sequences = [](auto test) {
});
};
#endif // !BOOST_HANA_TEST_EXT_FUSION_HELPER_HPP
#endif // !BOOST_HANA_TEST_EXT_BOOST_FUSION_HELPER_HPP

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
#include "../helper.hpp"
#include <cassert>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
#include "../helper.hpp"
#include <cassert>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
#include "../helper.hpp"
#include <cassert>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
#include "../helper.hpp"
#include <cassert>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/fusion.hpp>
#include <boost/hana/ext/boost/fusion.hpp>
#include "../helper.hpp"
#include <cassert>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/list.hpp>
#include <boost/hana/ext/boost/mpl/list.hpp>
#include <boost/hana/detail/static_assert.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/list.hpp>
#include <boost/hana/ext/boost/mpl/list.hpp>
#include <boost/hana/core.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/list.hpp>
#include <boost/hana/ext/boost/mpl/list.hpp>
#include <boost/hana/detail/static_assert.hpp>
#include <boost/hana/type.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/list.hpp>
#include <boost/hana/ext/boost/mpl/list.hpp>
#include <boost/hana/detail/constexpr.hpp>
#include <boost/hana/detail/laws.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/vector.hpp>
#include <boost/hana/ext/boost/mpl/vector.hpp>
#include <boost/hana/detail/static_assert.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/vector.hpp>
#include <boost/hana/ext/boost/mpl/vector.hpp>
#include <boost/hana/core.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/vector.hpp>
#include <boost/hana/ext/boost/mpl/vector.hpp>
#include <boost/hana/detail/static_assert.hpp>
#include <boost/hana/type.hpp>

View File

@@ -4,7 +4,7 @@ Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/ext/mpl/vector.hpp>
#include <boost/hana/ext/boost/mpl/vector.hpp>
#include <boost/hana/detail/constexpr.hpp>
#include <boost/hana/detail/laws.hpp>