12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #if !defined(BOOST_VMD_IS_ARRAY_HPP)
- #define BOOST_VMD_IS_ARRAY_HPP
- #include <boost/vmd/detail/setup.hpp>
- #if BOOST_PP_VARIADICS
- #include <boost/vmd/detail/is_array.hpp>
- #define BOOST_VMD_IS_ARRAY(sequence) \
- BOOST_VMD_DETAIL_IS_ARRAY(sequence) \
- #define BOOST_VMD_IS_ARRAY_D(d,sequence) \
- BOOST_VMD_DETAIL_IS_ARRAY_D(d,sequence) \
- #endif
- #endif
|