123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #if !defined(BOOST_VMD_IS_PARENS_EMPTY_HPP)
- #define BOOST_VMD_IS_PARENS_EMPTY_HPP
- #include <boost/vmd/detail/setup.hpp>
- #if BOOST_PP_VARIADICS
- #include <boost/vmd/detail/is_empty_tuple.hpp>
- #define BOOST_VMD_IS_PARENS_EMPTY(sequence) \
- BOOST_VMD_DETAIL_IS_EMPTY_TUPLE(sequence) \
- #define BOOST_VMD_IS_PARENS_EMPTY_D(d,sequence) \
- BOOST_VMD_DETAIL_IS_EMPTY_TUPLE_D(d,sequence) \
- #endif
- #endif
|