D | cxx-features.cpp | 8 #define check(macro, cxx98, cxx11, cxx1y) cxx98 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cx… macro 10 #define check(macro, cxx98, cxx11, cxx1y) cxx11 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cx… macro 12 #define check(macro, cxx98, cxx11, cxx1y) cxx1y == 0 ? defined(__cpp_##macro) : __cpp_##macro != cx… macro 15 #if check(binary_literals, 0, 0, 201304) 19 #if check(digit_separators, 0, 0, 201309) 23 #if check(init_captures, 0, 0, 201304) 27 #if check(generic_lambdas, 0, 0, 201304) 31 #if check(sized_deallocation, 0, 0, 201309) 35 #if check(constexpr, 0, 200704, 201304) 39 #if check(decltype_auto, 0, 0, 201304) [all …]
|