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