Warning, file /include/boost/vmd/detail/is_empty_array.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 #if !defined(BOOST_VMD_DETAIL_IS_EMPTY_ARRAY_HPP)
0008 #define BOOST_VMD_DETAIL_IS_EMPTY_ARRAY_HPP
0009
0010 #include <boost/preprocessor/array/size.hpp>
0011 #include <boost/preprocessor/logical/not.hpp>
0012
0013 #define BOOST_VMD_DETAIL_IS_EMPTY_ARRAY_SIZE(array) \
0014 BOOST_PP_NOT \
0015 ( \
0016 BOOST_PP_ARRAY_SIZE(array) \
0017 ) \
0018
0019
0020 #endif