2019-09-25 06:29:04 -04:00
|
|
|
# /* **************************************************************************
|
|
|
|
# * *
|
|
|
|
# * (C) Copyright Edward Diener 2019. *
|
|
|
|
# * Distributed under the Boost Software License, Version 1.0. (See *
|
|
|
|
# * accompanying file LICENSE_1_0.txt or copy at *
|
|
|
|
# * http://www.boost.org/LICENSE_1_0.txt) *
|
|
|
|
# * *
|
|
|
|
# ************************************************************************** */
|
|
|
|
#
|
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
2019-10-19 10:51:40 -04:00
|
|
|
# ifndef BOOST_PREPROCESSOR_VARIADIC_HAS_OPT_HPP
|
|
|
|
# define BOOST_PREPROCESSOR_VARIADIC_HAS_OPT_HPP
|
2019-09-25 06:29:04 -04:00
|
|
|
#
|
|
|
|
# include <boost/preprocessor/config/config.hpp>
|
|
|
|
#
|
2019-10-19 05:49:13 -04:00
|
|
|
# /* BOOST_PP_VARIADIC_HAS_OPT */
|
2019-09-25 06:29:04 -04:00
|
|
|
#
|
2019-11-12 14:57:09 -05:00
|
|
|
# if BOOST_PP_VARIADICS && defined(__cplusplus) && __cplusplus > 201703L
|
2019-10-19 10:51:40 -04:00
|
|
|
# include <boost/preprocessor/variadic/detail/has_opt.hpp>
|
2019-10-19 05:49:13 -04:00
|
|
|
# define BOOST_PP_VARIADIC_HAS_OPT() \
|
|
|
|
BOOST_PP_VARIADIC_HAS_OPT_ELEM2(BOOST_PP_VARIADIC_HAS_OPT_FUNCTION(?),) \
|
2019-09-25 06:29:04 -04:00
|
|
|
/**/
|
|
|
|
# else
|
2019-10-19 05:49:13 -04:00
|
|
|
# define BOOST_PP_VARIADIC_HAS_OPT() 0
|
2019-09-25 06:29:04 -04:00
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# endif
|