Warning, file /include/boost/spirit/home/x3/support/traits/is_range.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #if !defined(BOOST_SPIRIT_X3_IS_RANGE_DEC_06_2017_1900PM)
0009 #define BOOST_SPIRIT_X3_IS_RANGE_DEC_06_2017_1900PM
0010
0011 #include <boost/range/range_fwd.hpp>
0012 #include <boost/mpl/bool.hpp>
0013
0014 namespace boost { namespace spirit { namespace x3 { namespace traits
0015 {
0016 template <typename T, typename Enable = void>
0017 struct is_range
0018 : mpl::false_
0019 {};
0020
0021 template <typename T>
0022 struct is_range<boost::iterator_range<T>>
0023 : mpl::true_
0024 {};
0025 }}}}
0026
0027 #endif