1 # /* **************************************************************************
3 # * (C) Copyright Edward Diener 2014.
4 # * Distributed under the Boost Software License, Version 1.0. (See
5 # * accompanying file LICENSE_1_0.txt or copy at
6 # * http://www.boost.org/LICENSE_1_0.txt)
8 # ************************************************************************** */
10 # /* See http://www.boost.org for most recent version. */
12 # ifndef BOOST_PREPROCESSOR_FACILITIES_IS_EMPTY_VARIADIC_HPP
13 # define BOOST_PREPROCESSOR_FACILITIES_IS_EMPTY_VARIADIC_HPP
15 # include <boost/preprocessor/config/config.hpp>
17 # if BOOST_PP_VARIADICS
19 # include <boost/preprocessor/punctuation/is_begin_parens.hpp>
20 # include <boost/preprocessor/facilities/detail/is_empty.hpp>
22 #if BOOST_PP_VARIADICS_MSVC && _MSC_VER <= 1400
24 #define BOOST_PP_IS_EMPTY(param) \
25 BOOST_PP_DETAIL_IS_EMPTY_IIF \
27 BOOST_PP_IS_BEGIN_PARENS \
33 BOOST_PP_IS_EMPTY_ZERO, \
34 BOOST_PP_DETAIL_IS_EMPTY_PROCESS \
38 #define BOOST_PP_IS_EMPTY_ZERO(param) 0
40 #define BOOST_PP_IS_EMPTY(...) \
41 BOOST_PP_DETAIL_IS_EMPTY_IIF \
43 BOOST_PP_IS_BEGIN_PARENS \
49 BOOST_PP_IS_EMPTY_ZERO, \
50 BOOST_PP_DETAIL_IS_EMPTY_PROCESS \
54 #define BOOST_PP_IS_EMPTY_ZERO(...) 0
55 # endif /* BOOST_PP_VARIADICS_MSVC && _MSC_VER <= 1400 */
56 # endif /* BOOST_PP_VARIADICS */
57 # endif /* BOOST_PREPROCESSOR_FACILITIES_IS_EMPTY_VARIADIC_HPP */