Commit e334d7a7 by Jonathan Wakely Committed by Jonathan Wakely

Fix location of __cpp_lib_erase_if macro

This macro should only be defined for C++2a, not C++17.

	* include/std/version (__cpp_lib_erase_if): Move to C++20 group.

From-SVN: r267863
parent 1439f355
2019-01-11 Jonathan Wakely <jwakely@redhat.com>
* include/std/version (__cpp_lib_erase_if): Move to C++20 group.
2019-01-11 Jakub Jelinek <jakub@redhat.com> 2019-01-11 Jakub Jelinek <jakub@redhat.com>
* include/std/type_traits (__cpp_lib_is_constant_evaluated): Define. * include/std/type_traits (__cpp_lib_is_constant_evaluated): Define.
......
...@@ -96,7 +96,6 @@ ...@@ -96,7 +96,6 @@
#define __cpp_lib_clamp 201603 #define __cpp_lib_clamp 201603
#define __cpp_lib_constexpr_char_traits 201611 #define __cpp_lib_constexpr_char_traits 201611
#define __cpp_lib_enable_shared_from_this 201603 #define __cpp_lib_enable_shared_from_this 201603
#define __cpp_lib_erase_if 201900L
#define __cpp_lib_filesystem 201703 #define __cpp_lib_filesystem 201703
#define __cpp_lib_gcd 201606 #define __cpp_lib_gcd 201606
#define __cpp_lib_gcd_lcm 201606 #define __cpp_lib_gcd_lcm 201606
...@@ -142,6 +141,7 @@ ...@@ -142,6 +141,7 @@
#if __cplusplus > 201703L #if __cplusplus > 201703L
// c++2a // c++2a
#define __cpp_lib_erase_if 201900L
#ifdef _GLIBCXX_HAVE_BUILTIN_IS_CONSTANT_EVALUATED #ifdef _GLIBCXX_HAVE_BUILTIN_IS_CONSTANT_EVALUATED
# define __cpp_lib_is_constant_evaluated 201811L # define __cpp_lib_is_constant_evaluated 201811L
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment