]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/adapted/struct/detail/is_sequence_impl.hpp
Updated boost to v1.55.0
[rsem.git] / boost / fusion / adapted / struct / detail / is_sequence_impl.hpp
1 /*=============================================================================
2     Copyright (c) 2001-2011 Joel de Guzman
3     Copyright (c) 2005-2006 Dan Marsden
4     Copyright (c) 2009-2010 Christopher Schmidt
5
6     Distributed under the Boost Software License, Version 1.0. (See accompanying
7     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 ==============================================================================*/
9
10 #ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_IS_SEQUENCE_IMPL_HPP
11 #define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_IS_SEQUENCE_IMPL_HPP
12
13 #include <boost/mpl/bool.hpp>
14
15 namespace boost { namespace fusion { namespace extension
16 {
17     template<typename>
18     struct is_sequence_impl;
19
20     template<>
21     struct is_sequence_impl<struct_tag>
22     {
23         template<typename Seq>
24         struct apply
25           : mpl::true_
26         {};
27     };
28
29     template <>
30     struct is_sequence_impl<assoc_struct_tag>
31       : is_sequence_impl<struct_tag>
32     {};
33 }}}
34
35 #endif