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:
@@ -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 ...>
|
||||
|
||||
@@ -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 ...>
|
||||
|
||||
@@ -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 ...>
|
||||
|
||||
@@ -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}>" }) %>
|
||||
|
||||
@@ -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}>" }) %>
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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>
|
||||
|
||||
@@ -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
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user