/usr/include/boost/fusion/support/detail
Edit: /usr/include/boost/fusion/support/detail/is_native_fusion_sequence.hpp (947B)
/*=============================================================================
Copyright (c) 2018 Kohei Takahashi
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#ifndef BOOST_FUSION_IS_NATIVE_FUSION_SEQUENCE
#define BOOST_FUSION_IS_NATIVE_FUSION_SEQUENCE
#include
#include
#include
#include
#include
namespace boost { namespace fusion { namespace detail
{
template
struct is_native_fusion_sequence
: mpl::and_<
is_complete
, is_convertible
>
{};
}}}
#endif