| 1 | /*============================================================================= |
| 2 | Copyright (c) 2016 Kohei Takahashi |
| 3 | |
| 4 | Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 6 | ==============================================================================*/ |
| 7 | #ifndef boost_phoenix_core_detail_index_sequence_hpp |
| 8 | #define boost_phoenix_core_detail_index_sequence_hpp |
| 9 | |
| 10 | #include <boost/fusion/support/detail/index_sequence.hpp> |
| 11 | |
| 12 | namespace boost { namespace phoenix { namespace detail { |
| 13 | using ::boost::fusion::detail::index_sequence; |
| 14 | using ::boost::fusion::detail::make_index_sequence; |
| 15 | }}} |
| 16 | |
| 17 | #endif |
| 18 | |