]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/preprocessor/test/isempty_variadic_standard_failure2.cxx
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / preprocessor / test / isempty_variadic_standard_failure2.cxx
CommitLineData
7c673cae
FG
1# /* **************************************************************************
2# * *
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)
7# * *
8# ************************************************************************** */
9#
10# /* See http://www.boost.org for most recent version. */
11#
12# include <boost/preprocessor/facilities/is_empty.hpp>
13# include <libs/preprocessor/test/test.h>
14
15#if BOOST_PP_VARIADICS && (BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT()) && !BOOST_PP_VARIADICS_MSVC
16
17#define FUNC_GEN9(x,y,z) anything
18
92f5a8d4
TL
19#if defined(__cplusplus) && __cplusplus > 201703L
20
21# include <boost/preprocessor/variadic/has_opt.hpp>
22
23BEGIN BOOST_PP_IS_EMPTY(FUNC_GEN9) == BOOST_PP_VARIADIC_HAS_OPT() END
24
25#else
26
7c673cae
FG
27BEGIN BOOST_PP_IS_EMPTY(FUNC_GEN9) == 0 END
28
92f5a8d4
TL
29#endif
30
7c673cae
FG
31#else
32
33BEGIN 1 == 0 END
34
35#endif