File indexing completed on 2025-01-18 09:48:05
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_PREDEF_LANGUAGE_STDCPP_H
0009 #define BOOST_PREDEF_LANGUAGE_STDCPP_H
0010
0011 #include <boost/predef/version_number.h>
0012 #include <boost/predef/make.h>
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043 #define BOOST_LANG_STDCPP BOOST_VERSION_NUMBER_NOT_AVAILABLE
0044
0045 #if defined(__cplusplus)
0046 # undef BOOST_LANG_STDCPP
0047 # if (__cplusplus > 100)
0048 # define BOOST_LANG_STDCPP BOOST_PREDEF_MAKE_YYYYMM(__cplusplus)
0049 # else
0050 # define BOOST_LANG_STDCPP BOOST_VERSION_NUMBER_AVAILABLE
0051 # endif
0052 #endif
0053
0054 #if BOOST_LANG_STDCPP
0055 # define BOOST_LANG_STDCPP_AVAILABLE
0056 #endif
0057
0058 #define BOOST_LANG_STDCPP_NAME "Standard C++"
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074
0075
0076 #define BOOST_LANG_STDCPPCLI BOOST_VERSION_NUMBER_NOT_AVAILABLE
0077
0078 #if defined(__cplusplus_cli)
0079 # undef BOOST_LANG_STDCPPCLI
0080 # if (__cplusplus_cli > 100)
0081 # define BOOST_LANG_STDCPPCLI BOOST_PREDEF_MAKE_YYYYMM(__cplusplus_cli)
0082 # else
0083 # define BOOST_LANG_STDCPPCLI BOOST_VERSION_NUMBER_AVAILABLE
0084 # endif
0085 #endif
0086
0087 #if BOOST_LANG_STDCPPCLI
0088 # define BOOST_LANG_STDCPPCLI_AVAILABLE
0089 #endif
0090
0091 #define BOOST_LANG_STDCPPCLI_NAME "Standard C++/CLI"
0092
0093
0094
0095
0096
0097
0098
0099
0100
0101
0102
0103
0104
0105
0106 #define BOOST_LANG_STDECPP BOOST_VERSION_NUMBER_NOT_AVAILABLE
0107
0108 #if defined(__embedded_cplusplus)
0109 # undef BOOST_LANG_STDECPP
0110 # define BOOST_LANG_STDECPP BOOST_VERSION_NUMBER_AVAILABLE
0111 #endif
0112
0113 #if BOOST_LANG_STDECPP
0114 # define BOOST_LANG_STDECPP_AVAILABLE
0115 #endif
0116
0117 #define BOOST_LANG_STDECPP_NAME "Standard Embedded C++"
0118
0119 #endif
0120
0121 #include <boost/predef/detail/test.h>
0122 BOOST_PREDEF_DECLARE_TEST(BOOST_LANG_STDCPP,BOOST_LANG_STDCPP_NAME)
0123
0124 #include <boost/predef/detail/test.h>
0125 BOOST_PREDEF_DECLARE_TEST(BOOST_LANG_STDCPPCLI,BOOST_LANG_STDCPPCLI_NAME)
0126
0127 #include <boost/predef/detail/test.h>
0128 BOOST_PREDEF_DECLARE_TEST(BOOST_LANG_STDECPP,BOOST_LANG_STDECPP_NAME)