2007-10-21 00:52:09 +00:00
|
|
|
/*=============================================================================
|
2011-09-16 05:30:23 +00:00
|
|
|
Copyright (c) 2001-2011 Joel de Guzman
|
2007-10-21 00:52:09 +00:00
|
|
|
Copyright (c) 2005-2006 Dan Marsden
|
|
|
|
|
2011-08-12 05:18:44 +00:00
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
2007-10-21 00:52:09 +00:00
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
==============================================================================*/
|
|
|
|
#if !defined(BOOST_FUSION_EMPTY_IMPL_31122005_1554)
|
|
|
|
#define BOOST_FUSION_EMPTY_IMPL_31122005_1554
|
|
|
|
|
2014-01-09 17:58:06 -08:00
|
|
|
#include <boost/fusion/support/config.hpp>
|
2007-10-21 00:52:09 +00:00
|
|
|
#include <boost/mpl/empty.hpp>
|
|
|
|
|
2011-08-12 05:18:44 +00:00
|
|
|
namespace boost { namespace fusion
|
2007-10-21 00:52:09 +00:00
|
|
|
{
|
|
|
|
struct mpl_sequence_tag;
|
|
|
|
|
|
|
|
namespace extension
|
|
|
|
{
|
2011-08-12 05:18:44 +00:00
|
|
|
template <typename Sequence>
|
|
|
|
struct empty_impl;
|
|
|
|
|
2007-10-21 00:52:09 +00:00
|
|
|
template <>
|
|
|
|
struct empty_impl<mpl_sequence_tag>
|
|
|
|
{
|
|
|
|
template <typename Sequence>
|
|
|
|
struct apply : mpl::empty<Sequence> {};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif
|