make_vector.hpp 695 B

123456789101112131415161718192021
  1. /*=============================================================================
  2. Copyright (c) 2001-2010 Joel de Guzman
  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_SPIRIT_SUPPORT_DETAIL_MAKE_VECTOR_HPP
  7. #define BOOST_SPIRIT_SUPPORT_DETAIL_MAKE_VECTOR_HPP
  8. #include <boost/fusion/include/make_vector.hpp>
  9. namespace boost { namespace spirit { namespace detail
  10. {
  11. namespace result_of
  12. {
  13. using fusion::result_of::make_vector;
  14. }
  15. using fusion::make_vector;
  16. }}}
  17. #endif