Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-15 09:00:48

0001 # /* **************************************************************************
0002 #  *                                                                          *
0003 #  *     (C) Copyright Edward Diener 2019.                                    *
0004 #  *     Distributed under the Boost Software License, Version 1.0. (See      *
0005 #  *     accompanying file LICENSE_1_0.txt or copy at                         *
0006 #  *     http://www.boost.org/LICENSE_1_0.txt)                                *
0007 #  *                                                                          *
0008 #  ************************************************************************** */
0009 0010 ">#
0011 # /* See http://www.boost.org for most recent version. */
0012 0013 ">#
0014 # ifndef BOOST_PREPROCESSOR_VARIADIC_HAS_OPT_HPP
0015 # define BOOST_PREPROCESSOR_VARIADIC_HAS_OPT_HPP
0016 0017 ">#
0018 # include <boost/preprocessor/config/config.hpp>
0019 0020 ">#
0021 # /* BOOST_PP_VARIADIC_HAS_OPT */
0022 0023 ">#
0024 # if defined(__cplusplus) && __cplusplus > 201703L
0025 #  if defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 8 && __GNUC__ < 10
0026 #   define BOOST_PP_VARIADIC_HAS_OPT() 0
0027 #  elif defined(__clang__) && __clang_major__ < 9
0028 #   define BOOST_PP_VARIADIC_HAS_OPT() 0
0029 #  else
0030 #   include <boost/preprocessor/variadic/detail/has_opt.hpp>
0031 #   define BOOST_PP_VARIADIC_HAS_OPT() \
0032   BOOST_PP_VARIADIC_HAS_OPT_ELEM2(BOOST_PP_VARIADIC_HAS_OPT_FUNCTION(?),) \
0033 /**/
0034 #  endif
0035 # else
0036 # define BOOST_PP_VARIADIC_HAS_OPT() 0
0037 # endif
0038 0039 ">#
0040 # endif