index_sequence.hpp 690 B

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