Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/preprocessor/punctuation/is_begin_parens.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | f46d142149f5 |
children |
rev | line source |
---|---|
Chris@102 | 1 # /* ************************************************************************** |
Chris@102 | 2 # * * |
Chris@102 | 3 # * (C) Copyright Edward Diener 2014. |
Chris@102 | 4 # * Distributed under the Boost Software License, Version 1.0. (See |
Chris@102 | 5 # * accompanying file LICENSE_1_0.txt or copy at |
Chris@102 | 6 # * http://www.boost.org/LICENSE_1_0.txt) |
Chris@102 | 7 # * * |
Chris@102 | 8 # ************************************************************************** */ |
Chris@102 | 9 # |
Chris@102 | 10 # /* See http://www.boost.org for most recent version. */ |
Chris@102 | 11 # |
Chris@102 | 12 # ifndef BOOST_PREPROCESSOR_IS_BEGIN_PARENS_HPP |
Chris@102 | 13 # define BOOST_PREPROCESSOR_IS_BEGIN_PARENS_HPP |
Chris@102 | 14 |
Chris@102 | 15 # include <boost/preprocessor/config/config.hpp> |
Chris@102 | 16 |
Chris@102 | 17 #if BOOST_PP_VARIADICS |
Chris@102 | 18 |
Chris@102 | 19 #include <boost/preprocessor/punctuation/detail/is_begin_parens.hpp> |
Chris@102 | 20 |
Chris@102 | 21 #if BOOST_PP_VARIADICS_MSVC && _MSC_VER <= 1400 |
Chris@102 | 22 |
Chris@102 | 23 #define BOOST_PP_IS_BEGIN_PARENS(param) \ |
Chris@102 | 24 BOOST_PP_DETAIL_IBP_SPLIT \ |
Chris@102 | 25 ( \ |
Chris@102 | 26 0, \ |
Chris@102 | 27 BOOST_PP_DETAIL_IBP_CAT \ |
Chris@102 | 28 ( \ |
Chris@102 | 29 BOOST_PP_DETAIL_IBP_IS_VARIADIC_R_, \ |
Chris@102 | 30 BOOST_PP_DETAIL_IBP_IS_VARIADIC_C param \ |
Chris@102 | 31 ) \ |
Chris@102 | 32 ) \ |
Chris@102 | 33 /**/ |
Chris@102 | 34 |
Chris@102 | 35 #else |
Chris@102 | 36 |
Chris@102 | 37 #define BOOST_PP_IS_BEGIN_PARENS(...) \ |
Chris@102 | 38 BOOST_PP_DETAIL_IBP_SPLIT \ |
Chris@102 | 39 ( \ |
Chris@102 | 40 0, \ |
Chris@102 | 41 BOOST_PP_DETAIL_IBP_CAT \ |
Chris@102 | 42 ( \ |
Chris@102 | 43 BOOST_PP_DETAIL_IBP_IS_VARIADIC_R_, \ |
Chris@102 | 44 BOOST_PP_DETAIL_IBP_IS_VARIADIC_C __VA_ARGS__ \ |
Chris@102 | 45 ) \ |
Chris@102 | 46 ) \ |
Chris@102 | 47 /**/ |
Chris@102 | 48 |
Chris@102 | 49 #endif /* BOOST_PP_VARIADICS_MSVC && _MSC_VER <= 1400 */ |
Chris@102 | 50 #endif /* BOOST_PP_VARIADICS */ |
Chris@102 | 51 #endif /* BOOST_PREPROCESSOR_IS_BEGIN_PARENS_HPP */ |