OSDN Git Service

[libc++] Use c++20 instead of c++2a consistently.
authorMarek Kurdej <marek.kurdej@gmail.com>
Thu, 7 Jan 2021 11:29:04 +0000 (12:29 +0100)
committerMarek Kurdej <marek.kurdej@gmail.com>
Thu, 7 Jan 2021 12:11:33 +0000 (13:11 +0100)
* The only exception is that the flag -std=c++2a is still used not to break compatibility with older compilers (clang <= 9, gcc <= 9).
* Bump _LIBCPP_STD_VER for C++20 to 20 and use 21 for the future standard (C++2b).

That's a preparation step to add c++2b support to libc++.

Reviewed By: ldionne, #libc

Differential Revision: https://reviews.llvm.org/D93383

58 files changed:
libcxx/cmake/caches/Generic-cxx20.cmake [moved from libcxx/cmake/caches/Generic-cxx2a.cmake with 100% similarity]
libcxx/docs/DesignDocs/FeatureTestMacros.rst
libcxx/docs/FeatureTestMacroTable.rst
libcxx/docs/UsingLibcxx.rst
libcxx/include/__config
libcxx/include/new
libcxx/include/string
libcxx/include/string_view
libcxx/test/std/language.support/support.limits/support.limits.general/algorithm.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/any.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/array.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/atomic.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/bit.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/chrono.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/cmath.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/compare.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/complex.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/concepts.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/cstddef.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/deque.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/exception.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/execution.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/filesystem.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/forward_list.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/functional.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/iomanip.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/istream.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/iterator.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/limits.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/list.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/locale.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/map.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/memory.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/mutex.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/new.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/numbers.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/numeric.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/optional.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/ostream.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/regex.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/scoped_allocator.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/set.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/shared_mutex.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/span.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/string.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/string_view.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/tuple.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/type_traits.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/unordered_map.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/unordered_set.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/utility.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/variant.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/vector.version.pass.cpp
libcxx/test/std/language.support/support.limits/support.limits.general/version.version.pass.cpp
libcxx/test/support/test_macros.h
libcxx/utils/ci/buildkite-pipeline.yml
libcxx/utils/ci/run-buildbot
libcxx/utils/generate_feature_test_macro_components.py

index 644eb4a..2c6f983 100644 (file)
@@ -8,7 +8,7 @@ Feature Test Macros
 Overview
 ========
 
-Libc++ implements the C++ feature test macros as specified in the C++2a standard,
+Libc++ implements the C++ feature test macros as specified in the C++20 standard,
 and before that in non-normative guiding documents
 (`See cppreference <https://en.cppreference.com/w/User:D41D8CD98F/feature_testing_macros>`_)
 
index 5930cda..895e96f 100644 (file)
@@ -166,7 +166,7 @@ Status
     ------------------------------------------------- -----------------
     ``__cpp_lib_void_t``                              ``201411L``
     ------------------------------------------------- -----------------
-    **C++ 2a**
+    **C++ 20**
     -------------------------------------------------------------------
     ``__cpp_lib_array_constexpr``                     ``201811L``
     ------------------------------------------------- -----------------
index 4c37ada..6bf67ce 100644 (file)
@@ -254,7 +254,7 @@ C++17 Specific Configuration Macros
 **_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR**:
   This macro is used to re-enable `std::auto_ptr` in C++17.
 
-C++2a Specific Configuration Macros:
+C++20 Specific Configuration Macros:
 ------------------------------------
 **_LIBCPP_DISABLE_NODISCARD_AFTER_CXX17**:
   This macro can be used to disable diagnostics emitted from functions marked
index 9f49e80..4537d24 100644 (file)
 #    define _LIBCPP_STD_VER 14
 #  elif __cplusplus <= 201703L
 #    define _LIBCPP_STD_VER 17
+#  elif __cplusplus <= 202002L
+#    define _LIBCPP_STD_VER 20
 #  else
-#    define _LIBCPP_STD_VER 18  // current year, or date of c++2a ratification
+#    define _LIBCPP_STD_VER 21  // current year, or date of c++2b ratification
 #  endif
 #endif  // _LIBCPP_STD_VER
 
index 8b17003..0562cef 100644 (file)
@@ -49,11 +49,11 @@ new_handler get_new_handler() noexcept;
 template <class T> constexpr T* launder(T* p) noexcept; // C++17
 }  // std
 
-void* operator new(std::size_t size);                                   // replaceable, nodiscard in C++2a
-void* operator new(std::size_t size, std::align_val_t alignment);       // replaceable, C++17, nodiscard in C++2a
-void* operator new(std::size_t size, const std::nothrow_t&) noexcept;   // replaceable, nodiscard in C++2a
+void* operator new(std::size_t size);                                   // replaceable, nodiscard in C++20
+void* operator new(std::size_t size, std::align_val_t alignment);       // replaceable, C++17, nodiscard in C++20
+void* operator new(std::size_t size, const std::nothrow_t&) noexcept;   // replaceable, nodiscard in C++20
 void* operator new(std::size_t size, std::align_val_t alignment,
-                   const std::nothrow_t&) noexcept;                     // replaceable, C++17, nodiscard in C++2a
+                   const std::nothrow_t&) noexcept;                     // replaceable, C++17, nodiscard in C++20
 void  operator delete(void* ptr) noexcept;                              // replaceable
 void  operator delete(void* ptr, std::size_t size) noexcept;            // replaceable, C++14
 void  operator delete(void* ptr, std::align_val_t alignment) noexcept;  // replaceable, C++17
@@ -63,12 +63,12 @@ void  operator delete(void* ptr, const std::nothrow_t&) noexcept;       // repla
 void  operator delete(void* ptr, std:align_val_t alignment,
                       const std::nothrow_t&) noexcept;                  // replaceable, C++17
 
-void* operator new[](std::size_t size);                                 // replaceable, nodiscard in C++2a
+void* operator new[](std::size_t size);                                 // replaceable, nodiscard in C++20
 void* operator new[](std::size_t size,
-                     std::align_val_t alignment) noexcept;              // replaceable, C++17, nodiscard in C++2a
-void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable, nodiscard in C++2a
+                     std::align_val_t alignment) noexcept;              // replaceable, C++17, nodiscard in C++20
+void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable, nodiscard in C++20
 void* operator new[](std::size_t size, std::align_val_t alignment,
-                     const std::nothrow_t&) noexcept;                   // replaceable, C++17, nodiscard in C++2a
+                     const std::nothrow_t&) noexcept;                   // replaceable, C++17, nodiscard in C++20
 void  operator delete[](void* ptr) noexcept;                            // replaceable
 void  operator delete[](void* ptr, std::size_t size) noexcept;          // replaceable, C++14
 void  operator delete[](void* ptr,
@@ -79,8 +79,8 @@ void  operator delete[](void* ptr, const std::nothrow_t&) noexcept;     // repla
 void  operator delete[](void* ptr, std::align_val_t alignment,
                         const std::nothrow_t&) noexcept;                // replaceable, C++17
 
-void* operator new  (std::size_t size, void* ptr) noexcept;             // nodiscard in C++2a
-void* operator new[](std::size_t size, void* ptr) noexcept;             // nodiscard in C++2a
+void* operator new  (std::size_t size, void* ptr) noexcept;             // nodiscard in C++20
+void* operator new[](std::size_t size, void* ptr) noexcept;             // nodiscard in C++20
 void  operator delete  (void* ptr, void*) noexcept;
 void  operator delete[](void* ptr, void*) noexcept;
 
index 6805791..ef60666 100644 (file)
@@ -317,12 +317,12 @@ public:
     int compare(size_type pos1, size_type n1, const value_type* s) const;
     int compare(size_type pos1, size_type n1, const value_type* s, size_type n2) const;
 
-    bool starts_with(basic_string_view<charT, traits> sv) const noexcept; // C++2a
-    bool starts_with(charT c) const noexcept;                             // C++2a
-    bool starts_with(const charT* s) const;                               // C++2a
-    bool ends_with(basic_string_view<charT, traits> sv) const noexcept;   // C++2a
-    bool ends_with(charT c) const noexcept;                               // C++2a
-    bool ends_with(const charT* s) const;                                 // C++2a
+    bool starts_with(basic_string_view<charT, traits> sv) const noexcept; // C++20
+    bool starts_with(charT c) const noexcept;                             // C++20
+    bool starts_with(const charT* s) const;                               // C++20
+    bool ends_with(basic_string_view<charT, traits> sv) const noexcept;   // C++20
+    bool ends_with(charT c) const noexcept;                               // C++20
+    bool ends_with(const charT* s) const;                                 // C++20
 
     bool __invariants() const;
 };
index 44ffb02..28bbd36 100644 (file)
@@ -142,12 +142,12 @@ namespace std {
       constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
       constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
 
-      constexpr bool starts_with(basic_string_view s) const noexcept; // C++2a
-      constexpr bool starts_with(charT c) const noexcept;             // C++2a
-      constexpr bool starts_with(const charT* s) const;               // C++2a
-      constexpr bool ends_with(basic_string_view s) const noexcept;   // C++2a
-      constexpr bool ends_with(charT c) const noexcept;               // C++2a
-      constexpr bool ends_with(const charT* s) const;                 // C++2a
+      constexpr bool starts_with(basic_string_view s) const noexcept; // C++20
+      constexpr bool starts_with(charT c) const noexcept;             // C++20
+      constexpr bool starts_with(const charT* s) const;               // C++20
+      constexpr bool ends_with(basic_string_view s) const noexcept;   // C++20
+      constexpr bool ends_with(charT c) const noexcept;               // C++20
+      constexpr bool ends_with(const charT* s) const;                 // C++20
 
      private:
       const_pointer data_;  // exposition only
index 5458e91..820816d 100644 (file)
@@ -15,9 +15,9 @@
 
 /*  Constant                                 Value
     __cpp_lib_clamp                          201603L [C++17]
-    __cpp_lib_constexpr_swap_algorithms      201806L [C++2a]
+    __cpp_lib_constexpr_swap_algorithms      201806L [C++20]
     __cpp_lib_parallel_algorithm             201603L [C++17]
-    __cpp_lib_ranges                         201811L [C++2a]
+    __cpp_lib_ranges                         201811L [C++20]
     __cpp_lib_robust_nonmodifying_seq_ops    201304L [C++14]
     __cpp_lib_sample                         201603L [C++17]
 */
@@ -32,7 +32,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_swap_algorithms
-#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_parallel_algorithm
@@ -40,7 +40,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_robust_nonmodifying_seq_ops
@@ -58,7 +58,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_swap_algorithms
-#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_parallel_algorithm
@@ -66,7 +66,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_robust_nonmodifying_seq_ops
@@ -90,7 +90,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_swap_algorithms
-#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_robust_nonmodifying_seq_ops
 #   error "__cpp_lib_sample should have the value 201603L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_clamp
-#   error "__cpp_lib_clamp should be defined in c++2a"
+#   error "__cpp_lib_clamp should be defined in c++20"
 # endif
 # if __cpp_lib_clamp != 201603L
-#   error "__cpp_lib_clamp should have the value 201603L in c++2a"
+#   error "__cpp_lib_clamp should have the value 201603L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_constexpr_swap_algorithms
-#     error "__cpp_lib_constexpr_swap_algorithms should be defined in c++2a"
+#     error "__cpp_lib_constexpr_swap_algorithms should be defined in c++20"
 #   endif
 #   if __cpp_lib_constexpr_swap_algorithms != 201806L
-#     error "__cpp_lib_constexpr_swap_algorithms should have the value 201806L in c++2a"
+#     error "__cpp_lib_constexpr_swap_algorithms should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_constexpr_swap_algorithms
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_parallel_algorithm
-#     error "__cpp_lib_parallel_algorithm should be defined in c++2a"
+#     error "__cpp_lib_parallel_algorithm should be defined in c++20"
 #   endif
 #   if __cpp_lib_parallel_algorithm != 201603L
-#     error "__cpp_lib_parallel_algorithm should have the value 201603L in c++2a"
+#     error "__cpp_lib_parallel_algorithm should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_parallel_algorithm
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_ranges
-#     error "__cpp_lib_ranges should be defined in c++2a"
+#     error "__cpp_lib_ranges should be defined in c++20"
 #   endif
 #   if __cpp_lib_ranges != 201811L
-#     error "__cpp_lib_ranges should have the value 201811L in c++2a"
+#     error "__cpp_lib_ranges should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_ranges
 # endif
 
 # ifndef __cpp_lib_robust_nonmodifying_seq_ops
-#   error "__cpp_lib_robust_nonmodifying_seq_ops should be defined in c++2a"
+#   error "__cpp_lib_robust_nonmodifying_seq_ops should be defined in c++20"
 # endif
 # if __cpp_lib_robust_nonmodifying_seq_ops != 201304L
-#   error "__cpp_lib_robust_nonmodifying_seq_ops should have the value 201304L in c++2a"
+#   error "__cpp_lib_robust_nonmodifying_seq_ops should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_sample
-#   error "__cpp_lib_sample should be defined in c++2a"
+#   error "__cpp_lib_sample should be defined in c++20"
 # endif
 # if __cpp_lib_sample != 201603L
-#   error "__cpp_lib_sample should have the value 201603L in c++2a"
+#   error "__cpp_lib_sample should have the value 201603L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index f5255c0..e4f89d2 100644 (file)
 #   error "__cpp_lib_any should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_any
-#   error "__cpp_lib_any should be defined in c++2a"
+#   error "__cpp_lib_any should be defined in c++20"
 # endif
 # if __cpp_lib_any != 201606L
-#   error "__cpp_lib_any should have the value 201606L in c++2a"
+#   error "__cpp_lib_any should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index c2e831a..494ba44 100644 (file)
@@ -15,9 +15,9 @@
 
 /*  Constant                                Value
     __cpp_lib_array_constexpr               201603L [C++17]
-                                            201811L [C++2a]
+                                            201811L [C++20]
     __cpp_lib_nonmember_container_access    201411L [C++17]
-    __cpp_lib_to_array                      201907L [C++2a]
+    __cpp_lib_to_array                      201907L [C++20]
 */
 
 #include <array>
@@ -34,7 +34,7 @@
 # endif
 
 # ifdef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should not be defined before c++2a"
+#   error "__cpp_lib_to_array should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
@@ -48,7 +48,7 @@
 # endif
 
 # ifdef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should not be defined before c++2a"
+#   error "__cpp_lib_to_array should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 # endif
 
 # ifdef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should not be defined before c++2a"
+#   error "__cpp_lib_to_array should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_array_constexpr
-#   error "__cpp_lib_array_constexpr should be defined in c++2a"
+#   error "__cpp_lib_array_constexpr should be defined in c++20"
 # endif
 # if __cpp_lib_array_constexpr != 201811L
-#   error "__cpp_lib_array_constexpr should have the value 201811L in c++2a"
+#   error "__cpp_lib_array_constexpr should have the value 201811L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should be defined in c++2a"
+#   error "__cpp_lib_to_array should be defined in c++20"
 # endif
 # if __cpp_lib_to_array != 201907L
-#   error "__cpp_lib_to_array should have the value 201907L in c++2a"
+#   error "__cpp_lib_to_array should have the value 201907L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index d4c63ed..3eeca04 100644 (file)
 // Test the feature test macros defined by <atomic>
 
 /*  Constant                                   Value
-    __cpp_lib_atomic_flag_test                 201907L [C++2a]
-    __cpp_lib_atomic_float                     201711L [C++2a]
+    __cpp_lib_atomic_flag_test                 201907L [C++20]
+    __cpp_lib_atomic_float                     201711L [C++20]
     __cpp_lib_atomic_is_always_lock_free       201603L [C++17]
-    __cpp_lib_atomic_lock_free_type_aliases    201907L [C++2a]
-    __cpp_lib_atomic_ref                       201806L [C++2a]
-    __cpp_lib_atomic_shared_ptr                201711L [C++2a]
-    __cpp_lib_atomic_value_initialization      201911L [C++2a]
-    __cpp_lib_atomic_wait                      201907L [C++2a]
-    __cpp_lib_char8_t                          201811L [C++2a]
+    __cpp_lib_atomic_lock_free_type_aliases    201907L [C++20]
+    __cpp_lib_atomic_ref                       201806L [C++20]
+    __cpp_lib_atomic_shared_ptr                201711L [C++20]
+    __cpp_lib_atomic_value_initialization      201911L [C++20]
+    __cpp_lib_atomic_wait                      201907L [C++20]
+    __cpp_lib_char8_t                          201811L [C++20]
 */
 
 #include <atomic>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_atomic_flag_test
-#   error "__cpp_lib_atomic_flag_test should not be defined before c++2a"
+#   error "__cpp_lib_atomic_flag_test should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_float
-#   error "__cpp_lib_atomic_float should not be defined before c++2a"
+#   error "__cpp_lib_atomic_float should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_is_always_lock_free
 # endif
 
 # ifdef __cpp_lib_atomic_lock_free_type_aliases
-#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++2a"
+#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_ref
-#   error "__cpp_lib_atomic_ref should not be defined before c++2a"
+#   error "__cpp_lib_atomic_ref should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_shared_ptr
-#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++2a"
+#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_wait
-#   error "__cpp_lib_atomic_wait should not be defined before c++2a"
+#   error "__cpp_lib_atomic_wait should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_atomic_flag_test
-#   error "__cpp_lib_atomic_flag_test should not be defined before c++2a"
+#   error "__cpp_lib_atomic_flag_test should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_float
-#   error "__cpp_lib_atomic_float should not be defined before c++2a"
+#   error "__cpp_lib_atomic_float should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_is_always_lock_free
 # endif
 
 # ifdef __cpp_lib_atomic_lock_free_type_aliases
-#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++2a"
+#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_ref
-#   error "__cpp_lib_atomic_ref should not be defined before c++2a"
+#   error "__cpp_lib_atomic_ref should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_shared_ptr
-#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++2a"
+#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_wait
-#   error "__cpp_lib_atomic_wait should not be defined before c++2a"
+#   error "__cpp_lib_atomic_wait should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_atomic_flag_test
-#   error "__cpp_lib_atomic_flag_test should not be defined before c++2a"
+#   error "__cpp_lib_atomic_flag_test should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_float
-#   error "__cpp_lib_atomic_float should not be defined before c++2a"
+#   error "__cpp_lib_atomic_float should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 # endif
 
 # ifdef __cpp_lib_atomic_lock_free_type_aliases
-#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++2a"
+#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_ref
-#   error "__cpp_lib_atomic_ref should not be defined before c++2a"
+#   error "__cpp_lib_atomic_ref should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_shared_ptr
-#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++2a"
+#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_wait
-#   error "__cpp_lib_atomic_wait should not be defined before c++2a"
+#   error "__cpp_lib_atomic_wait should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_flag_test
-#     error "__cpp_lib_atomic_flag_test should be defined in c++2a"
+#     error "__cpp_lib_atomic_flag_test should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_flag_test != 201907L
-#     error "__cpp_lib_atomic_flag_test should have the value 201907L in c++2a"
+#     error "__cpp_lib_atomic_flag_test should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_flag_test
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_float
-#     error "__cpp_lib_atomic_float should be defined in c++2a"
+#     error "__cpp_lib_atomic_float should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_float != 201711L
-#     error "__cpp_lib_atomic_float should have the value 201711L in c++2a"
+#     error "__cpp_lib_atomic_float should have the value 201711L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_float
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_is_always_lock_free
-#     error "__cpp_lib_atomic_is_always_lock_free should be defined in c++2a"
+#     error "__cpp_lib_atomic_is_always_lock_free should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_is_always_lock_free != 201603L
-#     error "__cpp_lib_atomic_is_always_lock_free should have the value 201603L in c++2a"
+#     error "__cpp_lib_atomic_is_always_lock_free should have the value 201603L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_is_always_lock_free
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_lock_free_type_aliases
-#     error "__cpp_lib_atomic_lock_free_type_aliases should be defined in c++2a"
+#     error "__cpp_lib_atomic_lock_free_type_aliases should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_lock_free_type_aliases != 201907L
-#     error "__cpp_lib_atomic_lock_free_type_aliases should have the value 201907L in c++2a"
+#     error "__cpp_lib_atomic_lock_free_type_aliases should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_lock_free_type_aliases
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_ref
-#     error "__cpp_lib_atomic_ref should be defined in c++2a"
+#     error "__cpp_lib_atomic_ref should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_ref != 201806L
-#     error "__cpp_lib_atomic_ref should have the value 201806L in c++2a"
+#     error "__cpp_lib_atomic_ref should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_ref
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_shared_ptr
-#     error "__cpp_lib_atomic_shared_ptr should be defined in c++2a"
+#     error "__cpp_lib_atomic_shared_ptr should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_shared_ptr != 201711L
-#     error "__cpp_lib_atomic_shared_ptr should have the value 201711L in c++2a"
+#     error "__cpp_lib_atomic_shared_ptr should have the value 201711L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_shared_ptr
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_value_initialization
-#     error "__cpp_lib_atomic_value_initialization should be defined in c++2a"
+#     error "__cpp_lib_atomic_value_initialization should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_value_initialization != 201911L
-#     error "__cpp_lib_atomic_value_initialization should have the value 201911L in c++2a"
+#     error "__cpp_lib_atomic_value_initialization should have the value 201911L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_value_initialization
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_wait
-#     error "__cpp_lib_atomic_wait should be defined in c++2a"
+#     error "__cpp_lib_atomic_wait should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_wait != 201907L
-#     error "__cpp_lib_atomic_wait should have the value 201907L in c++2a"
+#     error "__cpp_lib_atomic_wait should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_wait
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 92a8ada..be015e4 100644 (file)
@@ -14,9 +14,9 @@
 // Test the feature test macros defined by <bit>
 
 /*  Constant              Value
-    __cpp_lib_bit_cast    201806L [C++2a]
-    __cpp_lib_endian      201907L [C++2a]
-    __cpp_lib_int_pow2    202002L [C++2a]
+    __cpp_lib_bit_cast    201806L [C++20]
+    __cpp_lib_endian      201907L [C++20]
+    __cpp_lib_int_pow2    202002L [C++20]
 */
 
 #include <bit>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_bit_cast
-#   error "__cpp_lib_bit_cast should not be defined before c++2a"
+#   error "__cpp_lib_bit_cast should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_endian
-#   error "__cpp_lib_endian should not be defined before c++2a"
+#   error "__cpp_lib_endian should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should not be defined before c++2a"
+#   error "__cpp_lib_int_pow2 should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_bit_cast
-#   error "__cpp_lib_bit_cast should not be defined before c++2a"
+#   error "__cpp_lib_bit_cast should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_endian
-#   error "__cpp_lib_endian should not be defined before c++2a"
+#   error "__cpp_lib_endian should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should not be defined before c++2a"
+#   error "__cpp_lib_int_pow2 should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_bit_cast
-#   error "__cpp_lib_bit_cast should not be defined before c++2a"
+#   error "__cpp_lib_bit_cast should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_endian
-#   error "__cpp_lib_endian should not be defined before c++2a"
+#   error "__cpp_lib_endian should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should not be defined before c++2a"
+#   error "__cpp_lib_int_pow2 should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_bit_cast
-#     error "__cpp_lib_bit_cast should be defined in c++2a"
+#     error "__cpp_lib_bit_cast should be defined in c++20"
 #   endif
 #   if __cpp_lib_bit_cast != 201806L
-#     error "__cpp_lib_bit_cast should have the value 201806L in c++2a"
+#     error "__cpp_lib_bit_cast should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_bit_cast
 # endif
 
 # ifndef __cpp_lib_endian
-#   error "__cpp_lib_endian should be defined in c++2a"
+#   error "__cpp_lib_endian should be defined in c++20"
 # endif
 # if __cpp_lib_endian != 201907L
-#   error "__cpp_lib_endian should have the value 201907L in c++2a"
+#   error "__cpp_lib_endian should have the value 201907L in c++20"
 # endif
 
 # ifndef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should be defined in c++2a"
+#   error "__cpp_lib_int_pow2 should be defined in c++20"
 # endif
 # if __cpp_lib_int_pow2 != 202002L
-#   error "__cpp_lib_int_pow2 should have the value 202002L in c++2a"
+#   error "__cpp_lib_int_pow2 should have the value 202002L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 88da2dc..b27cc4f 100644 (file)
 #   error "__cpp_lib_chrono_udls should have the value 201304L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_chrono
-#   error "__cpp_lib_chrono should be defined in c++2a"
+#   error "__cpp_lib_chrono should be defined in c++20"
 # endif
 # if __cpp_lib_chrono != 201611L
-#   error "__cpp_lib_chrono should have the value 201611L in c++2a"
+#   error "__cpp_lib_chrono should have the value 201611L in c++20"
 # endif
 
 # ifndef __cpp_lib_chrono_udls
-#   error "__cpp_lib_chrono_udls should be defined in c++2a"
+#   error "__cpp_lib_chrono_udls should be defined in c++20"
 # endif
 # if __cpp_lib_chrono_udls != 201304L
-#   error "__cpp_lib_chrono_udls should have the value 201304L in c++2a"
+#   error "__cpp_lib_chrono_udls should have the value 201304L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index d81218e..974c4cd 100644 (file)
 #   endif
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_hypot
-#   error "__cpp_lib_hypot should be defined in c++2a"
+#   error "__cpp_lib_hypot should be defined in c++20"
 # endif
 # if __cpp_lib_hypot != 201603L
-#   error "__cpp_lib_hypot should have the value 201603L in c++2a"
+#   error "__cpp_lib_hypot should have the value 201603L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_math_special_functions
-#     error "__cpp_lib_math_special_functions should be defined in c++2a"
+#     error "__cpp_lib_math_special_functions should be defined in c++20"
 #   endif
 #   if __cpp_lib_math_special_functions != 201603L
-#     error "__cpp_lib_math_special_functions should have the value 201603L in c++2a"
+#     error "__cpp_lib_math_special_functions should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_math_special_functions
@@ -85,6 +85,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 7f1836f..bcf419d 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <compare>
 
 /*  Constant                          Value
-    __cpp_lib_three_way_comparison    201711L [C++2a]
+    __cpp_lib_three_way_comparison    201711L [C++20]
 */
 
 #include <compare>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_three_way_comparison
-#   error "__cpp_lib_three_way_comparison should not be defined before c++2a"
+#   error "__cpp_lib_three_way_comparison should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_three_way_comparison
-#   error "__cpp_lib_three_way_comparison should not be defined before c++2a"
+#   error "__cpp_lib_three_way_comparison should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_three_way_comparison
-#   error "__cpp_lib_three_way_comparison should not be defined before c++2a"
+#   error "__cpp_lib_three_way_comparison should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_three_way_comparison
-#     error "__cpp_lib_three_way_comparison should be defined in c++2a"
+#     error "__cpp_lib_three_way_comparison should be defined in c++20"
 #   endif
 #   if __cpp_lib_three_way_comparison != 201711L
-#     error "__cpp_lib_three_way_comparison should have the value 201711L in c++2a"
+#     error "__cpp_lib_three_way_comparison should have the value 201711L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_three_way_comparison
@@ -53,6 +53,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index bcff0bb..9c39619 100644 (file)
 #   error "__cpp_lib_complex_udls should have the value 201309L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_complex_udls
-#   error "__cpp_lib_complex_udls should be defined in c++2a"
+#   error "__cpp_lib_complex_udls should be defined in c++20"
 # endif
 # if __cpp_lib_complex_udls != 201309L
-#   error "__cpp_lib_complex_udls should have the value 201309L in c++2a"
+#   error "__cpp_lib_complex_udls should have the value 201309L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 9ec2157..a35da2d 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <concepts>
 
 /*  Constant              Value
-    __cpp_lib_concepts    201806L [C++2a]
+    __cpp_lib_concepts    201806L [C++20]
 */
 
 #include <concepts>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_concepts
-#   error "__cpp_lib_concepts should not be defined before c++2a"
+#   error "__cpp_lib_concepts should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_concepts
-#   error "__cpp_lib_concepts should not be defined before c++2a"
+#   error "__cpp_lib_concepts should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_concepts
-#   error "__cpp_lib_concepts should not be defined before c++2a"
+#   error "__cpp_lib_concepts should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_concepts
-#     error "__cpp_lib_concepts should be defined in c++2a"
+#     error "__cpp_lib_concepts should be defined in c++20"
 #   endif
 #   if __cpp_lib_concepts != 201806L
-#     error "__cpp_lib_concepts should have the value 201806L in c++2a"
+#     error "__cpp_lib_concepts should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_concepts
@@ -53,6 +53,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index b18ea07..b124150 100644 (file)
 #   error "__cpp_lib_byte should have the value 201603L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_byte
-#   error "__cpp_lib_byte should be defined in c++2a"
+#   error "__cpp_lib_byte should be defined in c++20"
 # endif
 # if __cpp_lib_byte != 201603L
-#   error "__cpp_lib_byte should have the value 201603L in c++2a"
+#   error "__cpp_lib_byte should have the value 201603L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index ac6f94f..267ecf7 100644 (file)
@@ -15,7 +15,7 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_nonmember_container_access          201411L [C++17]
 */
 
@@ -29,7 +29,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
@@ -43,7 +43,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
@@ -60,7 +60,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 1ecebb4..5bc32aa 100644 (file)
 #   error "__cpp_lib_uncaught_exceptions should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_uncaught_exceptions
-#   error "__cpp_lib_uncaught_exceptions should be defined in c++2a"
+#   error "__cpp_lib_uncaught_exceptions should be defined in c++20"
 # endif
 # if __cpp_lib_uncaught_exceptions != 201411L
-#   error "__cpp_lib_uncaught_exceptions should have the value 201411L in c++2a"
+#   error "__cpp_lib_uncaught_exceptions should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 1244efa..40e47ce 100644 (file)
 #   endif
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_execution
-#     error "__cpp_lib_execution should be defined in c++2a"
+#     error "__cpp_lib_execution should be defined in c++20"
 #   endif
 #   if __cpp_lib_execution != 201603L
-#     error "__cpp_lib_execution should have the value 201603L in c++2a"
+#     error "__cpp_lib_execution should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_execution
@@ -62,6 +62,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index d1c09fc..e3e5f6f 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <filesystem>
 
 /*  Constant                Value
-    __cpp_lib_char8_t       201811L [C++2a]
+    __cpp_lib_char8_t       201811L [C++20]
     __cpp_lib_filesystem    201703L [C++17]
 */
 
@@ -24,7 +24,7 @@
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_filesystem
@@ -34,7 +34,7 @@
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_filesystem
@@ -44,7 +44,7 @@
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_filesystem
 #   error "__cpp_lib_filesystem should have the value 201703L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
 # endif
 
 # ifndef __cpp_lib_filesystem
-#   error "__cpp_lib_filesystem should be defined in c++2a"
+#   error "__cpp_lib_filesystem should be defined in c++20"
 # endif
 # if __cpp_lib_filesystem != 201703L
-#   error "__cpp_lib_filesystem should have the value 201703L in c++2a"
+#   error "__cpp_lib_filesystem should have the value 201703L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 837abe3..c57682e 100644 (file)
@@ -15,9 +15,9 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_incomplete_container_elements       201505L [C++17]
-    __cpp_lib_list_remove_return_type             201806L [C++2a]
+    __cpp_lib_list_remove_return_type             201806L [C++20]
     __cpp_lib_nonmember_container_access          201411L [C++17]
 */
 
@@ -31,7 +31,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_incomplete_container_elements
@@ -39,7 +39,7 @@
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
@@ -53,7 +53,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_incomplete_container_elements
@@ -61,7 +61,7 @@
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
@@ -78,7 +78,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
@@ -89,7 +89,7 @@
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
-#   error "__cpp_lib_incomplete_container_elements should be defined in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should be defined in c++20"
 # endif
 # if __cpp_lib_incomplete_container_elements != 201505L
-#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++20"
 # endif
 
 # ifndef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should be defined in c++2a"
+#   error "__cpp_lib_list_remove_return_type should be defined in c++20"
 # endif
 # if __cpp_lib_list_remove_return_type != 201806L
-#   error "__cpp_lib_list_remove_return_type should have the value 201806L in c++2a"
+#   error "__cpp_lib_list_remove_return_type should have the value 201806L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 2b55601..6fa7b85 100644 (file)
 // Test the feature test macros defined by <functional>
 
 /*  Constant                           Value
-    __cpp_lib_bind_front               201811L [C++2a]
+    __cpp_lib_bind_front               201811L [C++20]
     __cpp_lib_boyer_moore_searcher     201603L [C++17]
-    __cpp_lib_constexpr_functional     201907L [C++2a]
+    __cpp_lib_constexpr_functional     201907L [C++20]
     __cpp_lib_invoke                   201411L [C++17]
     __cpp_lib_not_fn                   201603L [C++17]
-    __cpp_lib_ranges                   201811L [C++2a]
+    __cpp_lib_ranges                   201811L [C++20]
     __cpp_lib_result_of_sfinae         201210L [C++14]
     __cpp_lib_transparent_operators    201210L [C++14]
                                        201510L [C++17]
@@ -31,7 +31,7 @@
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_bind_front
-#   error "__cpp_lib_bind_front should not be defined before c++2a"
+#   error "__cpp_lib_bind_front should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_boyer_moore_searcher
@@ -39,7 +39,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_functional should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_invoke
@@ -51,7 +51,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_result_of_sfinae
@@ -65,7 +65,7 @@
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_bind_front
-#   error "__cpp_lib_bind_front should not be defined before c++2a"
+#   error "__cpp_lib_bind_front should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_boyer_moore_searcher
@@ -73,7 +73,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_functional should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_invoke
@@ -85,7 +85,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_result_of_sfinae
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_bind_front
-#   error "__cpp_lib_bind_front should not be defined before c++2a"
+#   error "__cpp_lib_bind_front should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 # endif
 
 # ifdef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_functional should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_invoke
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_result_of_sfinae
 #   error "__cpp_lib_transparent_operators should have the value 201510L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_bind_front
-#     error "__cpp_lib_bind_front should be defined in c++2a"
+#     error "__cpp_lib_bind_front should be defined in c++20"
 #   endif
 #   if __cpp_lib_bind_front != 201811L
-#     error "__cpp_lib_bind_front should have the value 201811L in c++2a"
+#     error "__cpp_lib_bind_front should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_bind_front
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_boyer_moore_searcher
-#     error "__cpp_lib_boyer_moore_searcher should be defined in c++2a"
+#     error "__cpp_lib_boyer_moore_searcher should be defined in c++20"
 #   endif
 #   if __cpp_lib_boyer_moore_searcher != 201603L
-#     error "__cpp_lib_boyer_moore_searcher should have the value 201603L in c++2a"
+#     error "__cpp_lib_boyer_moore_searcher should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_boyer_moore_searcher
 # endif
 
 # ifndef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should be defined in c++2a"
+#   error "__cpp_lib_constexpr_functional should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_functional != 201907L
-#   error "__cpp_lib_constexpr_functional should have the value 201907L in c++2a"
+#   error "__cpp_lib_constexpr_functional should have the value 201907L in c++20"
 # endif
 
 # ifndef __cpp_lib_invoke
-#   error "__cpp_lib_invoke should be defined in c++2a"
+#   error "__cpp_lib_invoke should be defined in c++20"
 # endif
 # if __cpp_lib_invoke != 201411L
-#   error "__cpp_lib_invoke should have the value 201411L in c++2a"
+#   error "__cpp_lib_invoke should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_not_fn
-#   error "__cpp_lib_not_fn should be defined in c++2a"
+#   error "__cpp_lib_not_fn should be defined in c++20"
 # endif
 # if __cpp_lib_not_fn != 201603L
-#   error "__cpp_lib_not_fn should have the value 201603L in c++2a"
+#   error "__cpp_lib_not_fn should have the value 201603L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_ranges
-#     error "__cpp_lib_ranges should be defined in c++2a"
+#     error "__cpp_lib_ranges should be defined in c++20"
 #   endif
 #   if __cpp_lib_ranges != 201811L
-#     error "__cpp_lib_ranges should have the value 201811L in c++2a"
+#     error "__cpp_lib_ranges should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_ranges
 # endif
 
 # ifndef __cpp_lib_result_of_sfinae
-#   error "__cpp_lib_result_of_sfinae should be defined in c++2a"
+#   error "__cpp_lib_result_of_sfinae should be defined in c++20"
 # endif
 # if __cpp_lib_result_of_sfinae != 201210L
-#   error "__cpp_lib_result_of_sfinae should have the value 201210L in c++2a"
+#   error "__cpp_lib_result_of_sfinae should have the value 201210L in c++20"
 # endif
 
 # ifndef __cpp_lib_transparent_operators
-#   error "__cpp_lib_transparent_operators should be defined in c++2a"
+#   error "__cpp_lib_transparent_operators should be defined in c++20"
 # endif
 # if __cpp_lib_transparent_operators != 201510L
-#   error "__cpp_lib_transparent_operators should have the value 201510L in c++2a"
+#   error "__cpp_lib_transparent_operators should have the value 201510L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 0b1b4ea..36612e0 100644 (file)
 #   error "__cpp_lib_quoted_string_io should have the value 201304L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_quoted_string_io
-#   error "__cpp_lib_quoted_string_io should be defined in c++2a"
+#   error "__cpp_lib_quoted_string_io should be defined in c++20"
 # endif
 # if __cpp_lib_quoted_string_io != 201304L
-#   error "__cpp_lib_quoted_string_io should have the value 201304L in c++2a"
+#   error "__cpp_lib_quoted_string_io should have the value 201304L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 967173e..761712b 100644 (file)
@@ -16,7 +16,7 @@
 // Test the feature test macros defined by <istream>
 
 /*  Constant             Value
-    __cpp_lib_char8_t    201811L [C++2a]
+    __cpp_lib_char8_t    201811L [C++20]
 */
 
 #include <istream>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
@@ -55,6 +55,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 0c128f5..c6e5851 100644 (file)
 
 /*  Constant                                Value
     __cpp_lib_array_constexpr               201603L [C++17]
-                                            201811L [C++2a]
+                                            201811L [C++20]
     __cpp_lib_make_reverse_iterator         201402L [C++14]
     __cpp_lib_nonmember_container_access    201411L [C++17]
     __cpp_lib_null_iterators                201304L [C++14]
-    __cpp_lib_ranges                        201811L [C++2a]
+    __cpp_lib_ranges                        201811L [C++20]
 */
 
 #include <iterator>
@@ -44,7 +44,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
@@ -72,7 +72,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_array_constexpr
-#   error "__cpp_lib_array_constexpr should be defined in c++2a"
+#   error "__cpp_lib_array_constexpr should be defined in c++20"
 # endif
 # if __cpp_lib_array_constexpr != 201811L
-#   error "__cpp_lib_array_constexpr should have the value 201811L in c++2a"
+#   error "__cpp_lib_array_constexpr should have the value 201811L in c++20"
 # endif
 
 # ifndef __cpp_lib_make_reverse_iterator
-#   error "__cpp_lib_make_reverse_iterator should be defined in c++2a"
+#   error "__cpp_lib_make_reverse_iterator should be defined in c++20"
 # endif
 # if __cpp_lib_make_reverse_iterator != 201402L
-#   error "__cpp_lib_make_reverse_iterator should have the value 201402L in c++2a"
+#   error "__cpp_lib_make_reverse_iterator should have the value 201402L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_null_iterators
-#   error "__cpp_lib_null_iterators should be defined in c++2a"
+#   error "__cpp_lib_null_iterators should be defined in c++20"
 # endif
 # if __cpp_lib_null_iterators != 201304L
-#   error "__cpp_lib_null_iterators should have the value 201304L in c++2a"
+#   error "__cpp_lib_null_iterators should have the value 201304L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_ranges
-#     error "__cpp_lib_ranges should be defined in c++2a"
+#     error "__cpp_lib_ranges should be defined in c++20"
 #   endif
 #   if __cpp_lib_ranges != 201811L
-#     error "__cpp_lib_ranges should have the value 201811L in c++2a"
+#     error "__cpp_lib_ranges should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_ranges
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 2d2f243..daf8869 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <limits>
 
 /*  Constant             Value
-    __cpp_lib_char8_t    201811L [C++2a]
+    __cpp_lib_char8_t    201811L [C++20]
 */
 
 #include <limits>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
@@ -53,6 +53,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 218510f..92552a7 100644 (file)
@@ -15,9 +15,9 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_incomplete_container_elements       201505L [C++17]
-    __cpp_lib_list_remove_return_type             201806L [C++2a]
+    __cpp_lib_list_remove_return_type             201806L [C++20]
     __cpp_lib_nonmember_container_access          201411L [C++17]
 */
 
@@ -31,7 +31,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_incomplete_container_elements
@@ -39,7 +39,7 @@
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
@@ -53,7 +53,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_incomplete_container_elements
@@ -61,7 +61,7 @@
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
@@ -78,7 +78,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
@@ -89,7 +89,7 @@
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
-#   error "__cpp_lib_incomplete_container_elements should be defined in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should be defined in c++20"
 # endif
 # if __cpp_lib_incomplete_container_elements != 201505L
-#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++20"
 # endif
 
 # ifndef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should be defined in c++2a"
+#   error "__cpp_lib_list_remove_return_type should be defined in c++20"
 # endif
 # if __cpp_lib_list_remove_return_type != 201806L
-#   error "__cpp_lib_list_remove_return_type should have the value 201806L in c++2a"
+#   error "__cpp_lib_list_remove_return_type should have the value 201806L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 4315634..9744c7e 100644 (file)
@@ -16,7 +16,7 @@
 // Test the feature test macros defined by <locale>
 
 /*  Constant             Value
-    __cpp_lib_char8_t    201811L [C++2a]
+    __cpp_lib_char8_t    201811L [C++20]
 */
 
 #include <locale>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
@@ -55,6 +55,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index c6ef179..58aa741 100644 (file)
@@ -15,7 +15,7 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_generic_associative_lookup          201304L [C++14]
     __cpp_lib_map_try_emplace                     201411L [C++17]
     __cpp_lib_node_extract                        201606L [C++17]
@@ -32,7 +32,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_associative_lookup
@@ -58,7 +58,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
@@ -90,7 +90,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
-#   error "__cpp_lib_generic_associative_lookup should be defined in c++2a"
+#   error "__cpp_lib_generic_associative_lookup should be defined in c++20"
 # endif
 # if __cpp_lib_generic_associative_lookup != 201304L
-#   error "__cpp_lib_generic_associative_lookup should have the value 201304L in c++2a"
+#   error "__cpp_lib_generic_associative_lookup should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_map_try_emplace
-#   error "__cpp_lib_map_try_emplace should be defined in c++2a"
+#   error "__cpp_lib_map_try_emplace should be defined in c++20"
 # endif
 # if __cpp_lib_map_try_emplace != 201411L
-#   error "__cpp_lib_map_try_emplace should have the value 201411L in c++2a"
+#   error "__cpp_lib_map_try_emplace should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_node_extract
-#   error "__cpp_lib_node_extract should be defined in c++2a"
+#   error "__cpp_lib_node_extract should be defined in c++20"
 # endif
 # if __cpp_lib_node_extract != 201606L
-#   error "__cpp_lib_node_extract should have the value 201606L in c++2a"
+#   error "__cpp_lib_node_extract should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 4a2b778..3fe3990 100644 (file)
 /*  Constant                                      Value
     __cpp_lib_addressof_constexpr                 201603L [C++17]
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_atomic_value_initialization         201911L [C++2a]
-    __cpp_lib_constexpr_dynamic_alloc             201907L [C++2a]
+    __cpp_lib_atomic_value_initialization         201911L [C++20]
+    __cpp_lib_constexpr_dynamic_alloc             201907L [C++20]
     __cpp_lib_enable_shared_from_this             201603L [C++17]
     __cpp_lib_make_unique                         201304L [C++14]
-    __cpp_lib_ranges                              201811L [C++2a]
+    __cpp_lib_ranges                              201811L [C++20]
     __cpp_lib_raw_memory_algorithms               201606L [C++17]
     __cpp_lib_shared_ptr_arrays                   201611L [C++17]
     __cpp_lib_shared_ptr_weak_type                201606L [C++17]
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_enable_shared_from_this
@@ -56,7 +56,7 @@
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_raw_memory_algorithms
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_enable_shared_from_this
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_raw_memory_algorithms
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_enable_shared_from_this
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_raw_memory_algorithms
 #   error "__cpp_lib_shared_ptr_weak_type should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if TEST_HAS_BUILTIN(__builtin_addressof) || TEST_GCC_VER >= 700
 #   ifndef __cpp_lib_addressof_constexpr
-#     error "__cpp_lib_addressof_constexpr should be defined in c++2a"
+#     error "__cpp_lib_addressof_constexpr should be defined in c++20"
 #   endif
 #   if __cpp_lib_addressof_constexpr != 201603L
-#     error "__cpp_lib_addressof_constexpr should have the value 201603L in c++2a"
+#     error "__cpp_lib_addressof_constexpr should have the value 201603L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_addressof_constexpr
 # endif
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_value_initialization
-#     error "__cpp_lib_atomic_value_initialization should be defined in c++2a"
+#     error "__cpp_lib_atomic_value_initialization should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_value_initialization != 201911L
-#     error "__cpp_lib_atomic_value_initialization should have the value 201911L in c++2a"
+#     error "__cpp_lib_atomic_value_initialization should have the value 201911L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_value_initialization
 # endif
 
 # ifndef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should be defined in c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_dynamic_alloc != 201907L
-#   error "__cpp_lib_constexpr_dynamic_alloc should have the value 201907L in c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should have the value 201907L in c++20"
 # endif
 
 # ifndef __cpp_lib_enable_shared_from_this
-#   error "__cpp_lib_enable_shared_from_this should be defined in c++2a"
+#   error "__cpp_lib_enable_shared_from_this should be defined in c++20"
 # endif
 # if __cpp_lib_enable_shared_from_this != 201603L
-#   error "__cpp_lib_enable_shared_from_this should have the value 201603L in c++2a"
+#   error "__cpp_lib_enable_shared_from_this should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_make_unique
-#   error "__cpp_lib_make_unique should be defined in c++2a"
+#   error "__cpp_lib_make_unique should be defined in c++20"
 # endif
 # if __cpp_lib_make_unique != 201304L
-#   error "__cpp_lib_make_unique should have the value 201304L in c++2a"
+#   error "__cpp_lib_make_unique should have the value 201304L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_ranges
-#     error "__cpp_lib_ranges should be defined in c++2a"
+#     error "__cpp_lib_ranges should be defined in c++20"
 #   endif
 #   if __cpp_lib_ranges != 201811L
-#     error "__cpp_lib_ranges should have the value 201811L in c++2a"
+#     error "__cpp_lib_ranges should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_ranges
 # endif
 
 # ifndef __cpp_lib_raw_memory_algorithms
-#   error "__cpp_lib_raw_memory_algorithms should be defined in c++2a"
+#   error "__cpp_lib_raw_memory_algorithms should be defined in c++20"
 # endif
 # if __cpp_lib_raw_memory_algorithms != 201606L
-#   error "__cpp_lib_raw_memory_algorithms should have the value 201606L in c++2a"
+#   error "__cpp_lib_raw_memory_algorithms should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_shared_ptr_arrays
-#   error "__cpp_lib_shared_ptr_arrays should be defined in c++2a"
+#   error "__cpp_lib_shared_ptr_arrays should be defined in c++20"
 # endif
 # if __cpp_lib_shared_ptr_arrays != 201611L
-#   error "__cpp_lib_shared_ptr_arrays should have the value 201611L in c++2a"
+#   error "__cpp_lib_shared_ptr_arrays should have the value 201611L in c++20"
 # endif
 
 # ifndef __cpp_lib_shared_ptr_weak_type
-#   error "__cpp_lib_shared_ptr_weak_type should be defined in c++2a"
+#   error "__cpp_lib_shared_ptr_weak_type should be defined in c++20"
 # endif
 # if __cpp_lib_shared_ptr_weak_type != 201606L
-#   error "__cpp_lib_shared_ptr_weak_type should have the value 201606L in c++2a"
+#   error "__cpp_lib_shared_ptr_weak_type should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 9dae806..04dd82c 100644 (file)
 #   error "__cpp_lib_scoped_lock should have the value 201703L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_scoped_lock
-#   error "__cpp_lib_scoped_lock should be defined in c++2a"
+#   error "__cpp_lib_scoped_lock should be defined in c++20"
 # endif
 # if __cpp_lib_scoped_lock != 201703L
-#   error "__cpp_lib_scoped_lock should have the value 201703L in c++2a"
+#   error "__cpp_lib_scoped_lock should have the value 201703L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index ef83461..c8e1f2a 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <new>
 
 /*  Constant                                Value
-    __cpp_lib_destroying_delete             201806L [C++2a]
+    __cpp_lib_destroying_delete             201806L [C++20]
     __cpp_lib_hardware_interference_size    201703L [C++17]
     __cpp_lib_launder                       201606L [C++17]
 */
@@ -25,7 +25,7 @@
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_destroying_delete
-#   error "__cpp_lib_destroying_delete should not be defined before c++2a"
+#   error "__cpp_lib_destroying_delete should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_hardware_interference_size
@@ -39,7 +39,7 @@
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_destroying_delete
-#   error "__cpp_lib_destroying_delete should not be defined before c++2a"
+#   error "__cpp_lib_destroying_delete should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_hardware_interference_size
@@ -53,7 +53,7 @@
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_destroying_delete
-#   error "__cpp_lib_destroying_delete should not be defined before c++2a"
+#   error "__cpp_lib_destroying_delete should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   error "__cpp_lib_launder should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if TEST_STD_VER > 17 && defined(__cpp_impl_destroying_delete) && __cpp_impl_destroying_delete >= 201806L
 #   ifndef __cpp_lib_destroying_delete
-#     error "__cpp_lib_destroying_delete should be defined in c++2a"
+#     error "__cpp_lib_destroying_delete should be defined in c++20"
 #   endif
 #   if __cpp_lib_destroying_delete != 201806L
-#     error "__cpp_lib_destroying_delete should have the value 201806L in c++2a"
+#     error "__cpp_lib_destroying_delete should have the value 201806L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_destroying_delete
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_hardware_interference_size
-#     error "__cpp_lib_hardware_interference_size should be defined in c++2a"
+#     error "__cpp_lib_hardware_interference_size should be defined in c++20"
 #   endif
 #   if __cpp_lib_hardware_interference_size != 201703L
-#     error "__cpp_lib_hardware_interference_size should have the value 201703L in c++2a"
+#     error "__cpp_lib_hardware_interference_size should have the value 201703L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_hardware_interference_size
 # endif
 
 # ifndef __cpp_lib_launder
-#   error "__cpp_lib_launder should be defined in c++2a"
+#   error "__cpp_lib_launder should be defined in c++20"
 # endif
 # if __cpp_lib_launder != 201606L
-#   error "__cpp_lib_launder should have the value 201606L in c++2a"
+#   error "__cpp_lib_launder should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 489b217..9b2afb2 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <numbers>
 
 /*  Constant                    Value
-    __cpp_lib_math_constants    201907L [C++2a]
+    __cpp_lib_math_constants    201907L [C++20]
 */
 
 #include <numbers>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_math_constants
-#   error "__cpp_lib_math_constants should not be defined before c++2a"
+#   error "__cpp_lib_math_constants should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_math_constants
-#   error "__cpp_lib_math_constants should not be defined before c++2a"
+#   error "__cpp_lib_math_constants should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_math_constants
-#   error "__cpp_lib_math_constants should not be defined before c++2a"
+#   error "__cpp_lib_math_constants should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_concepts) && __cpp_concepts >= 201811L
 #   ifndef __cpp_lib_math_constants
-#     error "__cpp_lib_math_constants should be defined in c++2a"
+#     error "__cpp_lib_math_constants should be defined in c++20"
 #   endif
 #   if __cpp_lib_math_constants != 201907L
-#     error "__cpp_lib_math_constants should have the value 201907L in c++2a"
+#     error "__cpp_lib_math_constants should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_math_constants
@@ -53,6 +53,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 881c814..eee46c3 100644 (file)
@@ -14,9 +14,9 @@
 // Test the feature test macros defined by <numeric>
 
 /*  Constant                        Value
-    __cpp_lib_constexpr_numeric     201911L [C++2a]
+    __cpp_lib_constexpr_numeric     201911L [C++20]
     __cpp_lib_gcd_lcm               201606L [C++17]
-    __cpp_lib_interpolate           201902L [C++2a]
+    __cpp_lib_interpolate           201902L [C++20]
     __cpp_lib_parallel_algorithm    201603L [C++17]
 */
 
@@ -26,7 +26,7 @@
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_numeric should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_gcd_lcm
@@ -34,7 +34,7 @@
 # endif
 
 # ifdef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should not be defined before c++2a"
+#   error "__cpp_lib_interpolate should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_parallel_algorithm
@@ -44,7 +44,7 @@
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_numeric should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_gcd_lcm
@@ -52,7 +52,7 @@
 # endif
 
 # ifdef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should not be defined before c++2a"
+#   error "__cpp_lib_interpolate should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_parallel_algorithm
@@ -62,7 +62,7 @@
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_numeric should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_gcd_lcm
@@ -73,7 +73,7 @@
 # endif
 
 # ifdef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should not be defined before c++2a"
+#   error "__cpp_lib_interpolate should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   endif
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should be defined in c++2a"
+#   error "__cpp_lib_constexpr_numeric should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_numeric != 201911L
-#   error "__cpp_lib_constexpr_numeric should have the value 201911L in c++2a"
+#   error "__cpp_lib_constexpr_numeric should have the value 201911L in c++20"
 # endif
 
 # ifndef __cpp_lib_gcd_lcm
-#   error "__cpp_lib_gcd_lcm should be defined in c++2a"
+#   error "__cpp_lib_gcd_lcm should be defined in c++20"
 # endif
 # if __cpp_lib_gcd_lcm != 201606L
-#   error "__cpp_lib_gcd_lcm should have the value 201606L in c++2a"
+#   error "__cpp_lib_gcd_lcm should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should be defined in c++2a"
+#   error "__cpp_lib_interpolate should be defined in c++20"
 # endif
 # if __cpp_lib_interpolate != 201902L
-#   error "__cpp_lib_interpolate should have the value 201902L in c++2a"
+#   error "__cpp_lib_interpolate should have the value 201902L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_parallel_algorithm
-#     error "__cpp_lib_parallel_algorithm should be defined in c++2a"
+#     error "__cpp_lib_parallel_algorithm should be defined in c++20"
 #   endif
 #   if __cpp_lib_parallel_algorithm != 201603L
-#     error "__cpp_lib_parallel_algorithm should have the value 201603L in c++2a"
+#     error "__cpp_lib_parallel_algorithm should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_parallel_algorithm
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index d88fbb0..1a10447 100644 (file)
 #   error "__cpp_lib_optional should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_optional
-#   error "__cpp_lib_optional should be defined in c++2a"
+#   error "__cpp_lib_optional should be defined in c++20"
 # endif
 # if __cpp_lib_optional != 201606L
-#   error "__cpp_lib_optional should have the value 201606L in c++2a"
+#   error "__cpp_lib_optional should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index bb07375..bbc70b1 100644 (file)
@@ -16,7 +16,7 @@
 // Test the feature test macros defined by <ostream>
 
 /*  Constant             Value
-    __cpp_lib_char8_t    201811L [C++2a]
+    __cpp_lib_char8_t    201811L [C++20]
 */
 
 #include <ostream>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
@@ -55,6 +55,6 @@
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index a73d936..e457dbe 100644 (file)
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 2ea9825..a44804b 100644 (file)
 #   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index bc26397..ae60ce6 100644 (file)
@@ -15,7 +15,7 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_generic_associative_lookup          201304L [C++14]
     __cpp_lib_node_extract                        201606L [C++17]
     __cpp_lib_nonmember_container_access          201411L [C++17]
@@ -31,7 +31,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_associative_lookup
@@ -53,7 +53,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
@@ -81,7 +81,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
-#   error "__cpp_lib_generic_associative_lookup should be defined in c++2a"
+#   error "__cpp_lib_generic_associative_lookup should be defined in c++20"
 # endif
 # if __cpp_lib_generic_associative_lookup != 201304L
-#   error "__cpp_lib_generic_associative_lookup should have the value 201304L in c++2a"
+#   error "__cpp_lib_generic_associative_lookup should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_node_extract
-#   error "__cpp_lib_node_extract should be defined in c++2a"
+#   error "__cpp_lib_node_extract should be defined in c++20"
 # endif
 # if __cpp_lib_node_extract != 201606L
-#   error "__cpp_lib_node_extract should have the value 201606L in c++2a"
+#   error "__cpp_lib_node_extract should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 7c92dfc..b4b362f 100644 (file)
 #   endif
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_shared_mutex
-#     error "__cpp_lib_shared_mutex should be defined in c++2a"
+#     error "__cpp_lib_shared_mutex should be defined in c++20"
 #   endif
 #   if __cpp_lib_shared_mutex != 201505L
-#     error "__cpp_lib_shared_mutex should have the value 201505L in c++2a"
+#     error "__cpp_lib_shared_mutex should have the value 201505L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_shared_mutex
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_shared_timed_mutex
-#     error "__cpp_lib_shared_timed_mutex should be defined in c++2a"
+#     error "__cpp_lib_shared_timed_mutex should be defined in c++20"
 #   endif
 #   if __cpp_lib_shared_timed_mutex != 201402L
-#     error "__cpp_lib_shared_timed_mutex should have the value 201402L in c++2a"
+#     error "__cpp_lib_shared_timed_mutex should have the value 201402L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_shared_timed_mutex
 #   endif
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index c1a9f86..a496714 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <span>
 
 /*  Constant          Value
-    __cpp_lib_span    202002L [C++2a]
+    __cpp_lib_span    202002L [C++20]
 */
 
 #include <span>
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_span
-#   error "__cpp_lib_span should not be defined before c++2a"
+#   error "__cpp_lib_span should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_span
-#   error "__cpp_lib_span should not be defined before c++2a"
+#   error "__cpp_lib_span should not be defined before c++20"
 # endif
 
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_span
-#   error "__cpp_lib_span should not be defined before c++2a"
+#   error "__cpp_lib_span should not be defined before c++20"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_span
-#   error "__cpp_lib_span should be defined in c++2a"
+#   error "__cpp_lib_span should be defined in c++20"
 # endif
 # if __cpp_lib_span != 202002L
-#   error "__cpp_lib_span should have the value 202002L in c++2a"
+#   error "__cpp_lib_span should have the value 202002L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index eacd5ff..aa9aa32 100644 (file)
@@ -15,8 +15,8 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_char8_t                             201811L [C++2a]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_char8_t                             201811L [C++20]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_nonmember_container_access          201411L [C++17]
     __cpp_lib_string_udls                         201304L [C++14]
     __cpp_lib_string_view                         201606L [C++17]
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_nonmember_container_access
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
 #   error "__cpp_lib_string_view should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_string_udls
-#   error "__cpp_lib_string_udls should be defined in c++2a"
+#   error "__cpp_lib_string_udls should be defined in c++20"
 # endif
 # if __cpp_lib_string_udls != 201304L
-#   error "__cpp_lib_string_udls should have the value 201304L in c++2a"
+#   error "__cpp_lib_string_udls should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_string_view
-#   error "__cpp_lib_string_view should be defined in c++2a"
+#   error "__cpp_lib_string_view should be defined in c++20"
 # endif
 # if __cpp_lib_string_view != 201606L
-#   error "__cpp_lib_string_view should have the value 201606L in c++2a"
+#   error "__cpp_lib_string_view should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 1fca20d..d489b63 100644 (file)
@@ -14,7 +14,7 @@
 // Test the feature test macros defined by <string_view>
 
 /*  Constant                 Value
-    __cpp_lib_char8_t        201811L [C++2a]
+    __cpp_lib_char8_t        201811L [C++20]
     __cpp_lib_string_view    201606L [C++17]
 */
 
@@ -24,7 +24,7 @@
 #if TEST_STD_VER < 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_string_view
@@ -34,7 +34,7 @@
 #elif TEST_STD_VER == 14
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_string_view
@@ -44,7 +44,7 @@
 #elif TEST_STD_VER == 17
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_string_view
 #   error "__cpp_lib_string_view should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
 # endif
 
 # ifndef __cpp_lib_string_view
-#   error "__cpp_lib_string_view should be defined in c++2a"
+#   error "__cpp_lib_string_view should be defined in c++20"
 # endif
 # if __cpp_lib_string_view != 201606L
-#   error "__cpp_lib_string_view should have the value 201606L in c++2a"
+#   error "__cpp_lib_string_view should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index e4c3d54..556ed84 100644 (file)
 #   error "__cpp_lib_tuples_by_type should have the value 201304L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_apply
-#   error "__cpp_lib_apply should be defined in c++2a"
+#   error "__cpp_lib_apply should be defined in c++20"
 # endif
 # if __cpp_lib_apply != 201603L
-#   error "__cpp_lib_apply should have the value 201603L in c++2a"
+#   error "__cpp_lib_apply should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_make_from_tuple
-#   error "__cpp_lib_make_from_tuple should be defined in c++2a"
+#   error "__cpp_lib_make_from_tuple should be defined in c++20"
 # endif
 # if __cpp_lib_make_from_tuple != 201606L
-#   error "__cpp_lib_make_from_tuple should have the value 201606L in c++2a"
+#   error "__cpp_lib_make_from_tuple should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_tuple_element_t
-#   error "__cpp_lib_tuple_element_t should be defined in c++2a"
+#   error "__cpp_lib_tuple_element_t should be defined in c++20"
 # endif
 # if __cpp_lib_tuple_element_t != 201402L
-#   error "__cpp_lib_tuple_element_t should have the value 201402L in c++2a"
+#   error "__cpp_lib_tuple_element_t should have the value 201402L in c++20"
 # endif
 
 # ifndef __cpp_lib_tuples_by_type
-#   error "__cpp_lib_tuples_by_type should be defined in c++2a"
+#   error "__cpp_lib_tuples_by_type should be defined in c++20"
 # endif
 # if __cpp_lib_tuples_by_type != 201304L
-#   error "__cpp_lib_tuples_by_type should have the value 201304L in c++2a"
+#   error "__cpp_lib_tuples_by_type should have the value 201304L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 29e76b3..487fc8d 100644 (file)
@@ -18,7 +18,7 @@
     __cpp_lib_has_unique_object_representations    201606L [C++17]
     __cpp_lib_integral_constant_callable           201304L [C++14]
     __cpp_lib_is_aggregate                         201703L [C++17]
-    __cpp_lib_is_constant_evaluated                201811L [C++2a]
+    __cpp_lib_is_constant_evaluated                201811L [C++20]
     __cpp_lib_is_final                             201402L [C++14]
     __cpp_lib_is_invocable                         201703L [C++17]
     __cpp_lib_is_null_pointer                      201309L [C++14]
@@ -52,7 +52,7 @@
 # endif
 
 # ifdef __cpp_lib_is_constant_evaluated
-#   error "__cpp_lib_is_constant_evaluated should not be defined before c++2a"
+#   error "__cpp_lib_is_constant_evaluated should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_is_final
 # endif
 
 # ifdef __cpp_lib_is_constant_evaluated
-#   error "__cpp_lib_is_constant_evaluated should not be defined before c++2a"
+#   error "__cpp_lib_is_constant_evaluated should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_is_final
 # endif
 
 # ifdef __cpp_lib_is_constant_evaluated
-#   error "__cpp_lib_is_constant_evaluated should not be defined before c++2a"
+#   error "__cpp_lib_is_constant_evaluated should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_is_final
 #   error "__cpp_lib_void_t should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_bool_constant
-#   error "__cpp_lib_bool_constant should be defined in c++2a"
+#   error "__cpp_lib_bool_constant should be defined in c++20"
 # endif
 # if __cpp_lib_bool_constant != 201505L
-#   error "__cpp_lib_bool_constant should have the value 201505L in c++2a"
+#   error "__cpp_lib_bool_constant should have the value 201505L in c++20"
 # endif
 
 # if TEST_HAS_BUILTIN_IDENTIFIER(__has_unique_object_representations) || TEST_GCC_VER >= 700
 #   ifndef __cpp_lib_has_unique_object_representations
-#     error "__cpp_lib_has_unique_object_representations should be defined in c++2a"
+#     error "__cpp_lib_has_unique_object_representations should be defined in c++20"
 #   endif
 #   if __cpp_lib_has_unique_object_representations != 201606L
-#     error "__cpp_lib_has_unique_object_representations should have the value 201606L in c++2a"
+#     error "__cpp_lib_has_unique_object_representations should have the value 201606L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_has_unique_object_representations
 # endif
 
 # ifndef __cpp_lib_integral_constant_callable
-#   error "__cpp_lib_integral_constant_callable should be defined in c++2a"
+#   error "__cpp_lib_integral_constant_callable should be defined in c++20"
 # endif
 # if __cpp_lib_integral_constant_callable != 201304L
-#   error "__cpp_lib_integral_constant_callable should have the value 201304L in c++2a"
+#   error "__cpp_lib_integral_constant_callable should have the value 201304L in c++20"
 # endif
 
 # if TEST_HAS_BUILTIN_IDENTIFIER(__is_aggregate) || TEST_GCC_VER_NEW >= 7001
 #   ifndef __cpp_lib_is_aggregate
-#     error "__cpp_lib_is_aggregate should be defined in c++2a"
+#     error "__cpp_lib_is_aggregate should be defined in c++20"
 #   endif
 #   if __cpp_lib_is_aggregate != 201703L
-#     error "__cpp_lib_is_aggregate should have the value 201703L in c++2a"
+#     error "__cpp_lib_is_aggregate should have the value 201703L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_is_aggregate
 
 # if TEST_HAS_BUILTIN(__builtin_is_constant_evaluated) || TEST_GCC_VER >= 900
 #   ifndef __cpp_lib_is_constant_evaluated
-#     error "__cpp_lib_is_constant_evaluated should be defined in c++2a"
+#     error "__cpp_lib_is_constant_evaluated should be defined in c++20"
 #   endif
 #   if __cpp_lib_is_constant_evaluated != 201811L
-#     error "__cpp_lib_is_constant_evaluated should have the value 201811L in c++2a"
+#     error "__cpp_lib_is_constant_evaluated should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_is_constant_evaluated
 # endif
 
 # ifndef __cpp_lib_is_final
-#   error "__cpp_lib_is_final should be defined in c++2a"
+#   error "__cpp_lib_is_final should be defined in c++20"
 # endif
 # if __cpp_lib_is_final != 201402L
-#   error "__cpp_lib_is_final should have the value 201402L in c++2a"
+#   error "__cpp_lib_is_final should have the value 201402L in c++20"
 # endif
 
 # ifndef __cpp_lib_is_invocable
-#   error "__cpp_lib_is_invocable should be defined in c++2a"
+#   error "__cpp_lib_is_invocable should be defined in c++20"
 # endif
 # if __cpp_lib_is_invocable != 201703L
-#   error "__cpp_lib_is_invocable should have the value 201703L in c++2a"
+#   error "__cpp_lib_is_invocable should have the value 201703L in c++20"
 # endif
 
 # ifndef __cpp_lib_is_null_pointer
-#   error "__cpp_lib_is_null_pointer should be defined in c++2a"
+#   error "__cpp_lib_is_null_pointer should be defined in c++20"
 # endif
 # if __cpp_lib_is_null_pointer != 201309L
-#   error "__cpp_lib_is_null_pointer should have the value 201309L in c++2a"
+#   error "__cpp_lib_is_null_pointer should have the value 201309L in c++20"
 # endif
 
 # ifndef __cpp_lib_is_swappable
-#   error "__cpp_lib_is_swappable should be defined in c++2a"
+#   error "__cpp_lib_is_swappable should be defined in c++20"
 # endif
 # if __cpp_lib_is_swappable != 201603L
-#   error "__cpp_lib_is_swappable should have the value 201603L in c++2a"
+#   error "__cpp_lib_is_swappable should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_logical_traits
-#   error "__cpp_lib_logical_traits should be defined in c++2a"
+#   error "__cpp_lib_logical_traits should be defined in c++20"
 # endif
 # if __cpp_lib_logical_traits != 201510L
-#   error "__cpp_lib_logical_traits should have the value 201510L in c++2a"
+#   error "__cpp_lib_logical_traits should have the value 201510L in c++20"
 # endif
 
 # ifndef __cpp_lib_result_of_sfinae
-#   error "__cpp_lib_result_of_sfinae should be defined in c++2a"
+#   error "__cpp_lib_result_of_sfinae should be defined in c++20"
 # endif
 # if __cpp_lib_result_of_sfinae != 201210L
-#   error "__cpp_lib_result_of_sfinae should have the value 201210L in c++2a"
+#   error "__cpp_lib_result_of_sfinae should have the value 201210L in c++20"
 # endif
 
 # ifndef __cpp_lib_transformation_trait_aliases
-#   error "__cpp_lib_transformation_trait_aliases should be defined in c++2a"
+#   error "__cpp_lib_transformation_trait_aliases should be defined in c++20"
 # endif
 # if __cpp_lib_transformation_trait_aliases != 201304L
-#   error "__cpp_lib_transformation_trait_aliases should have the value 201304L in c++2a"
+#   error "__cpp_lib_transformation_trait_aliases should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_type_trait_variable_templates
-#   error "__cpp_lib_type_trait_variable_templates should be defined in c++2a"
+#   error "__cpp_lib_type_trait_variable_templates should be defined in c++20"
 # endif
 # if __cpp_lib_type_trait_variable_templates != 201510L
-#   error "__cpp_lib_type_trait_variable_templates should have the value 201510L in c++2a"
+#   error "__cpp_lib_type_trait_variable_templates should have the value 201510L in c++20"
 # endif
 
 # ifndef __cpp_lib_void_t
-#   error "__cpp_lib_void_t should be defined in c++2a"
+#   error "__cpp_lib_void_t should be defined in c++20"
 # endif
 # if __cpp_lib_void_t != 201411L
-#   error "__cpp_lib_void_t should have the value 201411L in c++2a"
+#   error "__cpp_lib_void_t should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index a3365f4..f37efd5 100644 (file)
@@ -15,8 +15,8 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
-    __cpp_lib_generic_unordered_lookup            201811L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
+    __cpp_lib_generic_unordered_lookup            201811L [C++20]
     __cpp_lib_node_extract                        201606L [C++17]
     __cpp_lib_nonmember_container_access          201411L [C++17]
     __cpp_lib_unordered_map_try_emplace           201411L [C++17]
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_node_extract
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_node_extract
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_node_extract
 #   error "__cpp_lib_unordered_map_try_emplace should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should be defined in c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should be defined in c++20"
 # endif
 # if __cpp_lib_generic_unordered_lookup != 201811L
-#   error "__cpp_lib_generic_unordered_lookup should have the value 201811L in c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should have the value 201811L in c++20"
 # endif
 
 # ifndef __cpp_lib_node_extract
-#   error "__cpp_lib_node_extract should be defined in c++2a"
+#   error "__cpp_lib_node_extract should be defined in c++20"
 # endif
 # if __cpp_lib_node_extract != 201606L
-#   error "__cpp_lib_node_extract should have the value 201606L in c++2a"
+#   error "__cpp_lib_node_extract should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_unordered_map_try_emplace
-#   error "__cpp_lib_unordered_map_try_emplace should be defined in c++2a"
+#   error "__cpp_lib_unordered_map_try_emplace should be defined in c++20"
 # endif
 # if __cpp_lib_unordered_map_try_emplace != 201411L
-#   error "__cpp_lib_unordered_map_try_emplace should have the value 201411L in c++2a"
+#   error "__cpp_lib_unordered_map_try_emplace should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 1cd5923..21e9600 100644 (file)
@@ -15,8 +15,8 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
-    __cpp_lib_generic_unordered_lookup            201811L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
+    __cpp_lib_generic_unordered_lookup            201811L [C++20]
     __cpp_lib_node_extract                        201606L [C++17]
     __cpp_lib_nonmember_container_access          201411L [C++17]
 */
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_node_extract
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_node_extract
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_node_extract
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should be defined in c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should be defined in c++20"
 # endif
 # if __cpp_lib_generic_unordered_lookup != 201811L
-#   error "__cpp_lib_generic_unordered_lookup should have the value 201811L in c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should have the value 201811L in c++20"
 # endif
 
 # ifndef __cpp_lib_node_extract
-#   error "__cpp_lib_node_extract should be defined in c++2a"
+#   error "__cpp_lib_node_extract should be defined in c++20"
 # endif
 # if __cpp_lib_node_extract != 201606L
-#   error "__cpp_lib_node_extract should have the value 201606L in c++2a"
+#   error "__cpp_lib_node_extract should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 63f755e..a5e1d71 100644 (file)
@@ -15,7 +15,7 @@
 
 /*  Constant                       Value
     __cpp_lib_as_const             201510L [C++17]
-    __cpp_lib_constexpr_utility    201811L [C++2a]
+    __cpp_lib_constexpr_utility    201811L [C++20]
     __cpp_lib_exchange_function    201304L [C++14]
     __cpp_lib_integer_sequence     201304L [C++14]
     __cpp_lib_to_chars             201611L [C++17]
@@ -32,7 +32,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_utility should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_exchange_function
@@ -58,7 +58,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_utility should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_exchange_function
@@ -96,7 +96,7 @@
 # endif
 
 # ifdef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_utility should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_exchange_function
 #   error "__cpp_lib_tuples_by_type should have the value 201304L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_as_const
-#   error "__cpp_lib_as_const should be defined in c++2a"
+#   error "__cpp_lib_as_const should be defined in c++20"
 # endif
 # if __cpp_lib_as_const != 201510L
-#   error "__cpp_lib_as_const should have the value 201510L in c++2a"
+#   error "__cpp_lib_as_const should have the value 201510L in c++20"
 # endif
 
 # ifndef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should be defined in c++2a"
+#   error "__cpp_lib_constexpr_utility should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_utility != 201811L
-#   error "__cpp_lib_constexpr_utility should have the value 201811L in c++2a"
+#   error "__cpp_lib_constexpr_utility should have the value 201811L in c++20"
 # endif
 
 # ifndef __cpp_lib_exchange_function
-#   error "__cpp_lib_exchange_function should be defined in c++2a"
+#   error "__cpp_lib_exchange_function should be defined in c++20"
 # endif
 # if __cpp_lib_exchange_function != 201304L
-#   error "__cpp_lib_exchange_function should have the value 201304L in c++2a"
+#   error "__cpp_lib_exchange_function should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_integer_sequence
-#   error "__cpp_lib_integer_sequence should be defined in c++2a"
+#   error "__cpp_lib_integer_sequence should be defined in c++20"
 # endif
 # if __cpp_lib_integer_sequence != 201304L
-#   error "__cpp_lib_integer_sequence should have the value 201304L in c++2a"
+#   error "__cpp_lib_integer_sequence should have the value 201304L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_to_chars
-#     error "__cpp_lib_to_chars should be defined in c++2a"
+#     error "__cpp_lib_to_chars should be defined in c++20"
 #   endif
 #   if __cpp_lib_to_chars != 201611L
-#     error "__cpp_lib_to_chars should have the value 201611L in c++2a"
+#     error "__cpp_lib_to_chars should have the value 201611L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_to_chars
 # endif
 
 # ifndef __cpp_lib_tuples_by_type
-#   error "__cpp_lib_tuples_by_type should be defined in c++2a"
+#   error "__cpp_lib_tuples_by_type should be defined in c++20"
 # endif
 # if __cpp_lib_tuples_by_type != 201304L
-#   error "__cpp_lib_tuples_by_type should have the value 201304L in c++2a"
+#   error "__cpp_lib_tuples_by_type should have the value 201304L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 7a17307..6e8c1ae 100644 (file)
 #   error "__cpp_lib_variant should have the value 201606L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_variant
-#   error "__cpp_lib_variant should be defined in c++2a"
+#   error "__cpp_lib_variant should be defined in c++20"
 # endif
 # if __cpp_lib_variant != 201606L
-#   error "__cpp_lib_variant should have the value 201606L in c++2a"
+#   error "__cpp_lib_variant should have the value 201606L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index 60bba44..13e869d 100644 (file)
@@ -15,7 +15,7 @@
 
 /*  Constant                                      Value
     __cpp_lib_allocator_traits_is_always_equal    201411L [C++17]
-    __cpp_lib_erase_if                            202002L [C++2a]
+    __cpp_lib_erase_if                            202002L [C++20]
     __cpp_lib_incomplete_container_elements       201505L [C++17]
     __cpp_lib_nonmember_container_access          201411L [C++17]
 */
@@ -30,7 +30,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_incomplete_container_elements
@@ -48,7 +48,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_incomplete_container_elements
@@ -69,7 +69,7 @@
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
 #   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
-#   error "__cpp_lib_incomplete_container_elements should be defined in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should be defined in c++20"
 # endif
 # if __cpp_lib_incomplete_container_elements != 201505L
-#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index e379071..3f5ff3c 100644 (file)
     __cpp_lib_any                                  201606L [C++17]
     __cpp_lib_apply                                201603L [C++17]
     __cpp_lib_array_constexpr                      201603L [C++17]
-                                                   201811L [C++2a]
+                                                   201811L [C++20]
     __cpp_lib_as_const                             201510L [C++17]
-    __cpp_lib_atomic_flag_test                     201907L [C++2a]
-    __cpp_lib_atomic_float                         201711L [C++2a]
+    __cpp_lib_atomic_flag_test                     201907L [C++20]
+    __cpp_lib_atomic_float                         201711L [C++20]
     __cpp_lib_atomic_is_always_lock_free           201603L [C++17]
-    __cpp_lib_atomic_lock_free_type_aliases        201907L [C++2a]
-    __cpp_lib_atomic_ref                           201806L [C++2a]
-    __cpp_lib_atomic_shared_ptr                    201711L [C++2a]
-    __cpp_lib_atomic_value_initialization          201911L [C++2a]
-    __cpp_lib_atomic_wait                          201907L [C++2a]
-    __cpp_lib_bind_front                           201811L [C++2a]
-    __cpp_lib_bit_cast                             201806L [C++2a]
+    __cpp_lib_atomic_lock_free_type_aliases        201907L [C++20]
+    __cpp_lib_atomic_ref                           201806L [C++20]
+    __cpp_lib_atomic_shared_ptr                    201711L [C++20]
+    __cpp_lib_atomic_value_initialization          201911L [C++20]
+    __cpp_lib_atomic_wait                          201907L [C++20]
+    __cpp_lib_bind_front                           201811L [C++20]
+    __cpp_lib_bit_cast                             201806L [C++20]
     __cpp_lib_bool_constant                        201505L [C++17]
     __cpp_lib_boyer_moore_searcher                 201603L [C++17]
     __cpp_lib_byte                                 201603L [C++17]
-    __cpp_lib_char8_t                              201811L [C++2a]
+    __cpp_lib_char8_t                              201811L [C++20]
     __cpp_lib_chrono                               201611L [C++17]
     __cpp_lib_chrono_udls                          201304L [C++14]
     __cpp_lib_clamp                                201603L [C++17]
     __cpp_lib_complex_udls                         201309L [C++14]
-    __cpp_lib_concepts                             201806L [C++2a]
-    __cpp_lib_constexpr_dynamic_alloc              201907L [C++2a]
-    __cpp_lib_constexpr_functional                 201907L [C++2a]
-    __cpp_lib_constexpr_numeric                    201911L [C++2a]
-    __cpp_lib_constexpr_swap_algorithms            201806L [C++2a]
-    __cpp_lib_constexpr_utility                    201811L [C++2a]
-    __cpp_lib_destroying_delete                    201806L [C++2a]
+    __cpp_lib_concepts                             201806L [C++20]
+    __cpp_lib_constexpr_dynamic_alloc              201907L [C++20]
+    __cpp_lib_constexpr_functional                 201907L [C++20]
+    __cpp_lib_constexpr_numeric                    201911L [C++20]
+    __cpp_lib_constexpr_swap_algorithms            201806L [C++20]
+    __cpp_lib_constexpr_utility                    201811L [C++20]
+    __cpp_lib_destroying_delete                    201806L [C++20]
     __cpp_lib_enable_shared_from_this              201603L [C++17]
-    __cpp_lib_endian                               201907L [C++2a]
-    __cpp_lib_erase_if                             202002L [C++2a]
+    __cpp_lib_endian                               201907L [C++20]
+    __cpp_lib_erase_if                             202002L [C++20]
     __cpp_lib_exchange_function                    201304L [C++14]
     __cpp_lib_execution                            201603L [C++17]
     __cpp_lib_filesystem                           201703L [C++17]
     __cpp_lib_gcd_lcm                              201606L [C++17]
     __cpp_lib_generic_associative_lookup           201304L [C++14]
-    __cpp_lib_generic_unordered_lookup             201811L [C++2a]
+    __cpp_lib_generic_unordered_lookup             201811L [C++20]
     __cpp_lib_hardware_interference_size           201703L [C++17]
     __cpp_lib_has_unique_object_representations    201606L [C++17]
     __cpp_lib_hypot                                201603L [C++17]
     __cpp_lib_incomplete_container_elements        201505L [C++17]
-    __cpp_lib_int_pow2                             202002L [C++2a]
+    __cpp_lib_int_pow2                             202002L [C++20]
     __cpp_lib_integer_sequence                     201304L [C++14]
     __cpp_lib_integral_constant_callable           201304L [C++14]
-    __cpp_lib_interpolate                          201902L [C++2a]
+    __cpp_lib_interpolate                          201902L [C++20]
     __cpp_lib_invoke                               201411L [C++17]
     __cpp_lib_is_aggregate                         201703L [C++17]
-    __cpp_lib_is_constant_evaluated                201811L [C++2a]
+    __cpp_lib_is_constant_evaluated                201811L [C++20]
     __cpp_lib_is_final                             201402L [C++14]
     __cpp_lib_is_invocable                         201703L [C++17]
     __cpp_lib_is_null_pointer                      201309L [C++14]
     __cpp_lib_is_swappable                         201603L [C++17]
     __cpp_lib_launder                              201606L [C++17]
-    __cpp_lib_list_remove_return_type              201806L [C++2a]
+    __cpp_lib_list_remove_return_type              201806L [C++20]
     __cpp_lib_logical_traits                       201510L [C++17]
     __cpp_lib_make_from_tuple                      201606L [C++17]
     __cpp_lib_make_reverse_iterator                201402L [C++14]
     __cpp_lib_make_unique                          201304L [C++14]
     __cpp_lib_map_try_emplace                      201411L [C++17]
-    __cpp_lib_math_constants                       201907L [C++2a]
+    __cpp_lib_math_constants                       201907L [C++20]
     __cpp_lib_math_special_functions               201603L [C++17]
     __cpp_lib_memory_resource                      201603L [C++17]
     __cpp_lib_node_extract                         201606L [C++17]
@@ -87,7 +87,7 @@
     __cpp_lib_optional                             201606L [C++17]
     __cpp_lib_parallel_algorithm                   201603L [C++17]
     __cpp_lib_quoted_string_io                     201304L [C++14]
-    __cpp_lib_ranges                               201811L [C++2a]
+    __cpp_lib_ranges                               201811L [C++20]
     __cpp_lib_raw_memory_algorithms                201606L [C++17]
     __cpp_lib_result_of_sfinae                     201210L [C++14]
     __cpp_lib_robust_nonmodifying_seq_ops          201304L [C++14]
     __cpp_lib_shared_ptr_arrays                    201611L [C++17]
     __cpp_lib_shared_ptr_weak_type                 201606L [C++17]
     __cpp_lib_shared_timed_mutex                   201402L [C++14]
-    __cpp_lib_span                                 202002L [C++2a]
+    __cpp_lib_span                                 202002L [C++20]
     __cpp_lib_string_udls                          201304L [C++14]
     __cpp_lib_string_view                          201606L [C++17]
-    __cpp_lib_three_way_comparison                 201711L [C++2a]
-    __cpp_lib_to_array                             201907L [C++2a]
+    __cpp_lib_three_way_comparison                 201711L [C++20]
+    __cpp_lib_to_array                             201907L [C++20]
     __cpp_lib_to_chars                             201611L [C++17]
     __cpp_lib_transformation_trait_aliases         201304L [C++14]
     __cpp_lib_transparent_operators                201210L [C++14]
 # endif
 
 # ifdef __cpp_lib_atomic_flag_test
-#   error "__cpp_lib_atomic_flag_test should not be defined before c++2a"
+#   error "__cpp_lib_atomic_flag_test should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_float
-#   error "__cpp_lib_atomic_float should not be defined before c++2a"
+#   error "__cpp_lib_atomic_float should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_is_always_lock_free
 # endif
 
 # ifdef __cpp_lib_atomic_lock_free_type_aliases
-#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++2a"
+#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_ref
-#   error "__cpp_lib_atomic_ref should not be defined before c++2a"
+#   error "__cpp_lib_atomic_ref should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_shared_ptr
-#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++2a"
+#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_wait
-#   error "__cpp_lib_atomic_wait should not be defined before c++2a"
+#   error "__cpp_lib_atomic_wait should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bind_front
-#   error "__cpp_lib_bind_front should not be defined before c++2a"
+#   error "__cpp_lib_bind_front should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bit_cast
-#   error "__cpp_lib_bit_cast should not be defined before c++2a"
+#   error "__cpp_lib_bit_cast should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bool_constant
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_chrono
 # endif
 
 # ifdef __cpp_lib_concepts
-#   error "__cpp_lib_concepts should not be defined before c++2a"
+#   error "__cpp_lib_concepts should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_functional should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_numeric should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_swap_algorithms
-#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_utility should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_destroying_delete
-#   error "__cpp_lib_destroying_delete should not be defined before c++2a"
+#   error "__cpp_lib_destroying_delete should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_enable_shared_from_this
 # endif
 
 # ifdef __cpp_lib_endian
-#   error "__cpp_lib_endian should not be defined before c++2a"
+#   error "__cpp_lib_endian should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_exchange_function
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_hardware_interference_size
 # endif
 
 # ifdef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should not be defined before c++2a"
+#   error "__cpp_lib_int_pow2 should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_integer_sequence
 # endif
 
 # ifdef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should not be defined before c++2a"
+#   error "__cpp_lib_interpolate should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_invoke
 # endif
 
 # ifdef __cpp_lib_is_constant_evaluated
-#   error "__cpp_lib_is_constant_evaluated should not be defined before c++2a"
+#   error "__cpp_lib_is_constant_evaluated should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_is_final
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_logical_traits
 # endif
 
 # ifdef __cpp_lib_math_constants
-#   error "__cpp_lib_math_constants should not be defined before c++2a"
+#   error "__cpp_lib_math_constants should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_math_special_functions
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_raw_memory_algorithms
 # endif
 
 # ifdef __cpp_lib_span
-#   error "__cpp_lib_span should not be defined before c++2a"
+#   error "__cpp_lib_span should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_string_udls
 # endif
 
 # ifdef __cpp_lib_three_way_comparison
-#   error "__cpp_lib_three_way_comparison should not be defined before c++2a"
+#   error "__cpp_lib_three_way_comparison should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should not be defined before c++2a"
+#   error "__cpp_lib_to_array should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_to_chars
 # endif
 
 # ifdef __cpp_lib_atomic_flag_test
-#   error "__cpp_lib_atomic_flag_test should not be defined before c++2a"
+#   error "__cpp_lib_atomic_flag_test should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_float
-#   error "__cpp_lib_atomic_float should not be defined before c++2a"
+#   error "__cpp_lib_atomic_float should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_is_always_lock_free
 # endif
 
 # ifdef __cpp_lib_atomic_lock_free_type_aliases
-#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++2a"
+#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_ref
-#   error "__cpp_lib_atomic_ref should not be defined before c++2a"
+#   error "__cpp_lib_atomic_ref should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_shared_ptr
-#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++2a"
+#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_wait
-#   error "__cpp_lib_atomic_wait should not be defined before c++2a"
+#   error "__cpp_lib_atomic_wait should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bind_front
-#   error "__cpp_lib_bind_front should not be defined before c++2a"
+#   error "__cpp_lib_bind_front should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bit_cast
-#   error "__cpp_lib_bit_cast should not be defined before c++2a"
+#   error "__cpp_lib_bit_cast should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bool_constant
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_chrono
 # endif
 
 # ifdef __cpp_lib_concepts
-#   error "__cpp_lib_concepts should not be defined before c++2a"
+#   error "__cpp_lib_concepts should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_functional should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_numeric should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_swap_algorithms
-#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_utility should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_destroying_delete
-#   error "__cpp_lib_destroying_delete should not be defined before c++2a"
+#   error "__cpp_lib_destroying_delete should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_enable_shared_from_this
 # endif
 
 # ifdef __cpp_lib_endian
-#   error "__cpp_lib_endian should not be defined before c++2a"
+#   error "__cpp_lib_endian should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_exchange_function
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_hardware_interference_size
 # endif
 
 # ifdef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should not be defined before c++2a"
+#   error "__cpp_lib_int_pow2 should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_integer_sequence
 # endif
 
 # ifdef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should not be defined before c++2a"
+#   error "__cpp_lib_interpolate should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_invoke
 # endif
 
 # ifdef __cpp_lib_is_constant_evaluated
-#   error "__cpp_lib_is_constant_evaluated should not be defined before c++2a"
+#   error "__cpp_lib_is_constant_evaluated should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_is_final
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_logical_traits
 # endif
 
 # ifdef __cpp_lib_math_constants
-#   error "__cpp_lib_math_constants should not be defined before c++2a"
+#   error "__cpp_lib_math_constants should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_math_special_functions
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_raw_memory_algorithms
 # endif
 
 # ifdef __cpp_lib_span
-#   error "__cpp_lib_span should not be defined before c++2a"
+#   error "__cpp_lib_span should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_string_udls
 # endif
 
 # ifdef __cpp_lib_three_way_comparison
-#   error "__cpp_lib_three_way_comparison should not be defined before c++2a"
+#   error "__cpp_lib_three_way_comparison should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should not be defined before c++2a"
+#   error "__cpp_lib_to_array should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_to_chars
 # endif
 
 # ifdef __cpp_lib_atomic_flag_test
-#   error "__cpp_lib_atomic_flag_test should not be defined before c++2a"
+#   error "__cpp_lib_atomic_flag_test should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_float
-#   error "__cpp_lib_atomic_float should not be defined before c++2a"
+#   error "__cpp_lib_atomic_float should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 # endif
 
 # ifdef __cpp_lib_atomic_lock_free_type_aliases
-#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++2a"
+#   error "__cpp_lib_atomic_lock_free_type_aliases should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_ref
-#   error "__cpp_lib_atomic_ref should not be defined before c++2a"
+#   error "__cpp_lib_atomic_ref should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_shared_ptr
-#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++2a"
+#   error "__cpp_lib_atomic_shared_ptr should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_value_initialization
-#   error "__cpp_lib_atomic_value_initialization should not be defined before c++2a"
+#   error "__cpp_lib_atomic_value_initialization should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_atomic_wait
-#   error "__cpp_lib_atomic_wait should not be defined before c++2a"
+#   error "__cpp_lib_atomic_wait should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bind_front
-#   error "__cpp_lib_bind_front should not be defined before c++2a"
+#   error "__cpp_lib_bind_front should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_bit_cast
-#   error "__cpp_lib_bit_cast should not be defined before c++2a"
+#   error "__cpp_lib_bit_cast should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_bool_constant
 # endif
 
 # ifdef __cpp_lib_char8_t
-#   error "__cpp_lib_char8_t should not be defined before c++2a"
+#   error "__cpp_lib_char8_t should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_chrono
 # endif
 
 # ifdef __cpp_lib_concepts
-#   error "__cpp_lib_concepts should not be defined before c++2a"
+#   error "__cpp_lib_concepts should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_functional should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_numeric should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_swap_algorithms
-#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_swap_algorithms should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should not be defined before c++2a"
+#   error "__cpp_lib_constexpr_utility should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_destroying_delete
-#   error "__cpp_lib_destroying_delete should not be defined before c++2a"
+#   error "__cpp_lib_destroying_delete should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_enable_shared_from_this
 # endif
 
 # ifdef __cpp_lib_endian
-#   error "__cpp_lib_endian should not be defined before c++2a"
+#   error "__cpp_lib_endian should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should not be defined before c++2a"
+#   error "__cpp_lib_erase_if should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_exchange_function
 # endif
 
 # ifdef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 # endif
 
 # ifdef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should not be defined before c++2a"
+#   error "__cpp_lib_int_pow2 should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_integer_sequence
 # endif
 
 # ifdef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should not be defined before c++2a"
+#   error "__cpp_lib_interpolate should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_invoke
 # endif
 
 # ifdef __cpp_lib_is_constant_evaluated
-#   error "__cpp_lib_is_constant_evaluated should not be defined before c++2a"
+#   error "__cpp_lib_is_constant_evaluated should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_is_final
 # endif
 
 # ifdef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should not be defined before c++2a"
+#   error "__cpp_lib_list_remove_return_type should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_logical_traits
 # endif
 
 # ifdef __cpp_lib_math_constants
-#   error "__cpp_lib_math_constants should not be defined before c++2a"
+#   error "__cpp_lib_math_constants should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 # endif
 
 # ifdef __cpp_lib_ranges
-#   error "__cpp_lib_ranges should not be defined before c++2a"
+#   error "__cpp_lib_ranges should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_raw_memory_algorithms
 # endif
 
 # ifdef __cpp_lib_span
-#   error "__cpp_lib_span should not be defined before c++2a"
+#   error "__cpp_lib_span should not be defined before c++20"
 # endif
 
 # ifndef __cpp_lib_string_udls
 # endif
 
 # ifdef __cpp_lib_three_way_comparison
-#   error "__cpp_lib_three_way_comparison should not be defined before c++2a"
+#   error "__cpp_lib_three_way_comparison should not be defined before c++20"
 # endif
 
 # ifdef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should not be defined before c++2a"
+#   error "__cpp_lib_to_array should not be defined before c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   error "__cpp_lib_void_t should have the value 201411L in c++17"
 # endif
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
 # if TEST_HAS_BUILTIN(__builtin_addressof) || TEST_GCC_VER >= 700
 #   ifndef __cpp_lib_addressof_constexpr
-#     error "__cpp_lib_addressof_constexpr should be defined in c++2a"
+#     error "__cpp_lib_addressof_constexpr should be defined in c++20"
 #   endif
 #   if __cpp_lib_addressof_constexpr != 201603L
-#     error "__cpp_lib_addressof_constexpr should have the value 201603L in c++2a"
+#     error "__cpp_lib_addressof_constexpr should have the value 201603L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_addressof_constexpr
 # endif
 
 # ifndef __cpp_lib_allocator_traits_is_always_equal
-#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should be defined in c++20"
 # endif
 # if __cpp_lib_allocator_traits_is_always_equal != 201411L
-#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++2a"
+#   error "__cpp_lib_allocator_traits_is_always_equal should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_any
-#   error "__cpp_lib_any should be defined in c++2a"
+#   error "__cpp_lib_any should be defined in c++20"
 # endif
 # if __cpp_lib_any != 201606L
-#   error "__cpp_lib_any should have the value 201606L in c++2a"
+#   error "__cpp_lib_any should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_apply
-#   error "__cpp_lib_apply should be defined in c++2a"
+#   error "__cpp_lib_apply should be defined in c++20"
 # endif
 # if __cpp_lib_apply != 201603L
-#   error "__cpp_lib_apply should have the value 201603L in c++2a"
+#   error "__cpp_lib_apply should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_array_constexpr
-#   error "__cpp_lib_array_constexpr should be defined in c++2a"
+#   error "__cpp_lib_array_constexpr should be defined in c++20"
 # endif
 # if __cpp_lib_array_constexpr != 201811L
-#   error "__cpp_lib_array_constexpr should have the value 201811L in c++2a"
+#   error "__cpp_lib_array_constexpr should have the value 201811L in c++20"
 # endif
 
 # ifndef __cpp_lib_as_const
-#   error "__cpp_lib_as_const should be defined in c++2a"
+#   error "__cpp_lib_as_const should be defined in c++20"
 # endif
 # if __cpp_lib_as_const != 201510L
-#   error "__cpp_lib_as_const should have the value 201510L in c++2a"
+#   error "__cpp_lib_as_const should have the value 201510L in c++20"
 # endif
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_flag_test
-#     error "__cpp_lib_atomic_flag_test should be defined in c++2a"
+#     error "__cpp_lib_atomic_flag_test should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_flag_test != 201907L
-#     error "__cpp_lib_atomic_flag_test should have the value 201907L in c++2a"
+#     error "__cpp_lib_atomic_flag_test should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_flag_test
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_float
-#     error "__cpp_lib_atomic_float should be defined in c++2a"
+#     error "__cpp_lib_atomic_float should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_float != 201711L
-#     error "__cpp_lib_atomic_float should have the value 201711L in c++2a"
+#     error "__cpp_lib_atomic_float should have the value 201711L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_float
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_is_always_lock_free
-#     error "__cpp_lib_atomic_is_always_lock_free should be defined in c++2a"
+#     error "__cpp_lib_atomic_is_always_lock_free should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_is_always_lock_free != 201603L
-#     error "__cpp_lib_atomic_is_always_lock_free should have the value 201603L in c++2a"
+#     error "__cpp_lib_atomic_is_always_lock_free should have the value 201603L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_is_always_lock_free
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_lock_free_type_aliases
-#     error "__cpp_lib_atomic_lock_free_type_aliases should be defined in c++2a"
+#     error "__cpp_lib_atomic_lock_free_type_aliases should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_lock_free_type_aliases != 201907L
-#     error "__cpp_lib_atomic_lock_free_type_aliases should have the value 201907L in c++2a"
+#     error "__cpp_lib_atomic_lock_free_type_aliases should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_lock_free_type_aliases
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_ref
-#     error "__cpp_lib_atomic_ref should be defined in c++2a"
+#     error "__cpp_lib_atomic_ref should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_ref != 201806L
-#     error "__cpp_lib_atomic_ref should have the value 201806L in c++2a"
+#     error "__cpp_lib_atomic_ref should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_ref
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_shared_ptr
-#     error "__cpp_lib_atomic_shared_ptr should be defined in c++2a"
+#     error "__cpp_lib_atomic_shared_ptr should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_shared_ptr != 201711L
-#     error "__cpp_lib_atomic_shared_ptr should have the value 201711L in c++2a"
+#     error "__cpp_lib_atomic_shared_ptr should have the value 201711L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_shared_ptr
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_atomic_value_initialization
-#     error "__cpp_lib_atomic_value_initialization should be defined in c++2a"
+#     error "__cpp_lib_atomic_value_initialization should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_value_initialization != 201911L
-#     error "__cpp_lib_atomic_value_initialization should have the value 201911L in c++2a"
+#     error "__cpp_lib_atomic_value_initialization should have the value 201911L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_atomic_value_initialization
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_atomic_wait
-#     error "__cpp_lib_atomic_wait should be defined in c++2a"
+#     error "__cpp_lib_atomic_wait should be defined in c++20"
 #   endif
 #   if __cpp_lib_atomic_wait != 201907L
-#     error "__cpp_lib_atomic_wait should have the value 201907L in c++2a"
+#     error "__cpp_lib_atomic_wait should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_atomic_wait
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_bind_front
-#     error "__cpp_lib_bind_front should be defined in c++2a"
+#     error "__cpp_lib_bind_front should be defined in c++20"
 #   endif
 #   if __cpp_lib_bind_front != 201811L
-#     error "__cpp_lib_bind_front should have the value 201811L in c++2a"
+#     error "__cpp_lib_bind_front should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_bind_front
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_bit_cast
-#     error "__cpp_lib_bit_cast should be defined in c++2a"
+#     error "__cpp_lib_bit_cast should be defined in c++20"
 #   endif
 #   if __cpp_lib_bit_cast != 201806L
-#     error "__cpp_lib_bit_cast should have the value 201806L in c++2a"
+#     error "__cpp_lib_bit_cast should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_bit_cast
 # endif
 
 # ifndef __cpp_lib_bool_constant
-#   error "__cpp_lib_bool_constant should be defined in c++2a"
+#   error "__cpp_lib_bool_constant should be defined in c++20"
 # endif
 # if __cpp_lib_bool_constant != 201505L
-#   error "__cpp_lib_bool_constant should have the value 201505L in c++2a"
+#   error "__cpp_lib_bool_constant should have the value 201505L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_boyer_moore_searcher
-#     error "__cpp_lib_boyer_moore_searcher should be defined in c++2a"
+#     error "__cpp_lib_boyer_moore_searcher should be defined in c++20"
 #   endif
 #   if __cpp_lib_boyer_moore_searcher != 201603L
-#     error "__cpp_lib_boyer_moore_searcher should have the value 201603L in c++2a"
+#     error "__cpp_lib_boyer_moore_searcher should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_boyer_moore_searcher
 # endif
 
 # ifndef __cpp_lib_byte
-#   error "__cpp_lib_byte should be defined in c++2a"
+#   error "__cpp_lib_byte should be defined in c++20"
 # endif
 # if __cpp_lib_byte != 201603L
-#   error "__cpp_lib_byte should have the value 201603L in c++2a"
+#   error "__cpp_lib_byte should have the value 201603L in c++20"
 # endif
 
 # if defined(__cpp_char8_t)
 #   ifndef __cpp_lib_char8_t
-#     error "__cpp_lib_char8_t should be defined in c++2a"
+#     error "__cpp_lib_char8_t should be defined in c++20"
 #   endif
 #   if __cpp_lib_char8_t != 201811L
-#     error "__cpp_lib_char8_t should have the value 201811L in c++2a"
+#     error "__cpp_lib_char8_t should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_char8_t
 # endif
 
 # ifndef __cpp_lib_chrono
-#   error "__cpp_lib_chrono should be defined in c++2a"
+#   error "__cpp_lib_chrono should be defined in c++20"
 # endif
 # if __cpp_lib_chrono != 201611L
-#   error "__cpp_lib_chrono should have the value 201611L in c++2a"
+#   error "__cpp_lib_chrono should have the value 201611L in c++20"
 # endif
 
 # ifndef __cpp_lib_chrono_udls
-#   error "__cpp_lib_chrono_udls should be defined in c++2a"
+#   error "__cpp_lib_chrono_udls should be defined in c++20"
 # endif
 # if __cpp_lib_chrono_udls != 201304L
-#   error "__cpp_lib_chrono_udls should have the value 201304L in c++2a"
+#   error "__cpp_lib_chrono_udls should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_clamp
-#   error "__cpp_lib_clamp should be defined in c++2a"
+#   error "__cpp_lib_clamp should be defined in c++20"
 # endif
 # if __cpp_lib_clamp != 201603L
-#   error "__cpp_lib_clamp should have the value 201603L in c++2a"
+#   error "__cpp_lib_clamp should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_complex_udls
-#   error "__cpp_lib_complex_udls should be defined in c++2a"
+#   error "__cpp_lib_complex_udls should be defined in c++20"
 # endif
 # if __cpp_lib_complex_udls != 201309L
-#   error "__cpp_lib_complex_udls should have the value 201309L in c++2a"
+#   error "__cpp_lib_complex_udls should have the value 201309L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_concepts
-#     error "__cpp_lib_concepts should be defined in c++2a"
+#     error "__cpp_lib_concepts should be defined in c++20"
 #   endif
 #   if __cpp_lib_concepts != 201806L
-#     error "__cpp_lib_concepts should have the value 201806L in c++2a"
+#     error "__cpp_lib_concepts should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_concepts
 # endif
 
 # ifndef __cpp_lib_constexpr_dynamic_alloc
-#   error "__cpp_lib_constexpr_dynamic_alloc should be defined in c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_dynamic_alloc != 201907L
-#   error "__cpp_lib_constexpr_dynamic_alloc should have the value 201907L in c++2a"
+#   error "__cpp_lib_constexpr_dynamic_alloc should have the value 201907L in c++20"
 # endif
 
 # ifndef __cpp_lib_constexpr_functional
-#   error "__cpp_lib_constexpr_functional should be defined in c++2a"
+#   error "__cpp_lib_constexpr_functional should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_functional != 201907L
-#   error "__cpp_lib_constexpr_functional should have the value 201907L in c++2a"
+#   error "__cpp_lib_constexpr_functional should have the value 201907L in c++20"
 # endif
 
 # ifndef __cpp_lib_constexpr_numeric
-#   error "__cpp_lib_constexpr_numeric should be defined in c++2a"
+#   error "__cpp_lib_constexpr_numeric should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_numeric != 201911L
-#   error "__cpp_lib_constexpr_numeric should have the value 201911L in c++2a"
+#   error "__cpp_lib_constexpr_numeric should have the value 201911L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_constexpr_swap_algorithms
-#     error "__cpp_lib_constexpr_swap_algorithms should be defined in c++2a"
+#     error "__cpp_lib_constexpr_swap_algorithms should be defined in c++20"
 #   endif
 #   if __cpp_lib_constexpr_swap_algorithms != 201806L
-#     error "__cpp_lib_constexpr_swap_algorithms should have the value 201806L in c++2a"
+#     error "__cpp_lib_constexpr_swap_algorithms should have the value 201806L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_constexpr_swap_algorithms
 # endif
 
 # ifndef __cpp_lib_constexpr_utility
-#   error "__cpp_lib_constexpr_utility should be defined in c++2a"
+#   error "__cpp_lib_constexpr_utility should be defined in c++20"
 # endif
 # if __cpp_lib_constexpr_utility != 201811L
-#   error "__cpp_lib_constexpr_utility should have the value 201811L in c++2a"
+#   error "__cpp_lib_constexpr_utility should have the value 201811L in c++20"
 # endif
 
 # if TEST_STD_VER > 17 && defined(__cpp_impl_destroying_delete) && __cpp_impl_destroying_delete >= 201806L
 #   ifndef __cpp_lib_destroying_delete
-#     error "__cpp_lib_destroying_delete should be defined in c++2a"
+#     error "__cpp_lib_destroying_delete should be defined in c++20"
 #   endif
 #   if __cpp_lib_destroying_delete != 201806L
-#     error "__cpp_lib_destroying_delete should have the value 201806L in c++2a"
+#     error "__cpp_lib_destroying_delete should have the value 201806L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_destroying_delete
 # endif
 
 # ifndef __cpp_lib_enable_shared_from_this
-#   error "__cpp_lib_enable_shared_from_this should be defined in c++2a"
+#   error "__cpp_lib_enable_shared_from_this should be defined in c++20"
 # endif
 # if __cpp_lib_enable_shared_from_this != 201603L
-#   error "__cpp_lib_enable_shared_from_this should have the value 201603L in c++2a"
+#   error "__cpp_lib_enable_shared_from_this should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_endian
-#   error "__cpp_lib_endian should be defined in c++2a"
+#   error "__cpp_lib_endian should be defined in c++20"
 # endif
 # if __cpp_lib_endian != 201907L
-#   error "__cpp_lib_endian should have the value 201907L in c++2a"
+#   error "__cpp_lib_endian should have the value 201907L in c++20"
 # endif
 
 # ifndef __cpp_lib_erase_if
-#   error "__cpp_lib_erase_if should be defined in c++2a"
+#   error "__cpp_lib_erase_if should be defined in c++20"
 # endif
 # if __cpp_lib_erase_if != 202002L
-#   error "__cpp_lib_erase_if should have the value 202002L in c++2a"
+#   error "__cpp_lib_erase_if should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_exchange_function
-#   error "__cpp_lib_exchange_function should be defined in c++2a"
+#   error "__cpp_lib_exchange_function should be defined in c++20"
 # endif
 # if __cpp_lib_exchange_function != 201304L
-#   error "__cpp_lib_exchange_function should have the value 201304L in c++2a"
+#   error "__cpp_lib_exchange_function should have the value 201304L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_execution
-#     error "__cpp_lib_execution should be defined in c++2a"
+#     error "__cpp_lib_execution should be defined in c++20"
 #   endif
 #   if __cpp_lib_execution != 201603L
-#     error "__cpp_lib_execution should have the value 201603L in c++2a"
+#     error "__cpp_lib_execution should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_execution
 # endif
 
 # ifndef __cpp_lib_filesystem
-#   error "__cpp_lib_filesystem should be defined in c++2a"
+#   error "__cpp_lib_filesystem should be defined in c++20"
 # endif
 # if __cpp_lib_filesystem != 201703L
-#   error "__cpp_lib_filesystem should have the value 201703L in c++2a"
+#   error "__cpp_lib_filesystem should have the value 201703L in c++20"
 # endif
 
 # ifndef __cpp_lib_gcd_lcm
-#   error "__cpp_lib_gcd_lcm should be defined in c++2a"
+#   error "__cpp_lib_gcd_lcm should be defined in c++20"
 # endif
 # if __cpp_lib_gcd_lcm != 201606L
-#   error "__cpp_lib_gcd_lcm should have the value 201606L in c++2a"
+#   error "__cpp_lib_gcd_lcm should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_generic_associative_lookup
-#   error "__cpp_lib_generic_associative_lookup should be defined in c++2a"
+#   error "__cpp_lib_generic_associative_lookup should be defined in c++20"
 # endif
 # if __cpp_lib_generic_associative_lookup != 201304L
-#   error "__cpp_lib_generic_associative_lookup should have the value 201304L in c++2a"
+#   error "__cpp_lib_generic_associative_lookup should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_generic_unordered_lookup
-#   error "__cpp_lib_generic_unordered_lookup should be defined in c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should be defined in c++20"
 # endif
 # if __cpp_lib_generic_unordered_lookup != 201811L
-#   error "__cpp_lib_generic_unordered_lookup should have the value 201811L in c++2a"
+#   error "__cpp_lib_generic_unordered_lookup should have the value 201811L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_hardware_interference_size
-#     error "__cpp_lib_hardware_interference_size should be defined in c++2a"
+#     error "__cpp_lib_hardware_interference_size should be defined in c++20"
 #   endif
 #   if __cpp_lib_hardware_interference_size != 201703L
-#     error "__cpp_lib_hardware_interference_size should have the value 201703L in c++2a"
+#     error "__cpp_lib_hardware_interference_size should have the value 201703L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_hardware_interference_size
 
 # if TEST_HAS_BUILTIN_IDENTIFIER(__has_unique_object_representations) || TEST_GCC_VER >= 700
 #   ifndef __cpp_lib_has_unique_object_representations
-#     error "__cpp_lib_has_unique_object_representations should be defined in c++2a"
+#     error "__cpp_lib_has_unique_object_representations should be defined in c++20"
 #   endif
 #   if __cpp_lib_has_unique_object_representations != 201606L
-#     error "__cpp_lib_has_unique_object_representations should have the value 201606L in c++2a"
+#     error "__cpp_lib_has_unique_object_representations should have the value 201606L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_has_unique_object_representations
 # endif
 
 # ifndef __cpp_lib_hypot
-#   error "__cpp_lib_hypot should be defined in c++2a"
+#   error "__cpp_lib_hypot should be defined in c++20"
 # endif
 # if __cpp_lib_hypot != 201603L
-#   error "__cpp_lib_hypot should have the value 201603L in c++2a"
+#   error "__cpp_lib_hypot should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_incomplete_container_elements
-#   error "__cpp_lib_incomplete_container_elements should be defined in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should be defined in c++20"
 # endif
 # if __cpp_lib_incomplete_container_elements != 201505L
-#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++2a"
+#   error "__cpp_lib_incomplete_container_elements should have the value 201505L in c++20"
 # endif
 
 # ifndef __cpp_lib_int_pow2
-#   error "__cpp_lib_int_pow2 should be defined in c++2a"
+#   error "__cpp_lib_int_pow2 should be defined in c++20"
 # endif
 # if __cpp_lib_int_pow2 != 202002L
-#   error "__cpp_lib_int_pow2 should have the value 202002L in c++2a"
+#   error "__cpp_lib_int_pow2 should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_integer_sequence
-#   error "__cpp_lib_integer_sequence should be defined in c++2a"
+#   error "__cpp_lib_integer_sequence should be defined in c++20"
 # endif
 # if __cpp_lib_integer_sequence != 201304L
-#   error "__cpp_lib_integer_sequence should have the value 201304L in c++2a"
+#   error "__cpp_lib_integer_sequence should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_integral_constant_callable
-#   error "__cpp_lib_integral_constant_callable should be defined in c++2a"
+#   error "__cpp_lib_integral_constant_callable should be defined in c++20"
 # endif
 # if __cpp_lib_integral_constant_callable != 201304L
-#   error "__cpp_lib_integral_constant_callable should have the value 201304L in c++2a"
+#   error "__cpp_lib_integral_constant_callable should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_interpolate
-#   error "__cpp_lib_interpolate should be defined in c++2a"
+#   error "__cpp_lib_interpolate should be defined in c++20"
 # endif
 # if __cpp_lib_interpolate != 201902L
-#   error "__cpp_lib_interpolate should have the value 201902L in c++2a"
+#   error "__cpp_lib_interpolate should have the value 201902L in c++20"
 # endif
 
 # ifndef __cpp_lib_invoke
-#   error "__cpp_lib_invoke should be defined in c++2a"
+#   error "__cpp_lib_invoke should be defined in c++20"
 # endif
 # if __cpp_lib_invoke != 201411L
-#   error "__cpp_lib_invoke should have the value 201411L in c++2a"
+#   error "__cpp_lib_invoke should have the value 201411L in c++20"
 # endif
 
 # if TEST_HAS_BUILTIN_IDENTIFIER(__is_aggregate) || TEST_GCC_VER_NEW >= 7001
 #   ifndef __cpp_lib_is_aggregate
-#     error "__cpp_lib_is_aggregate should be defined in c++2a"
+#     error "__cpp_lib_is_aggregate should be defined in c++20"
 #   endif
 #   if __cpp_lib_is_aggregate != 201703L
-#     error "__cpp_lib_is_aggregate should have the value 201703L in c++2a"
+#     error "__cpp_lib_is_aggregate should have the value 201703L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_is_aggregate
 
 # if TEST_HAS_BUILTIN(__builtin_is_constant_evaluated) || TEST_GCC_VER >= 900
 #   ifndef __cpp_lib_is_constant_evaluated
-#     error "__cpp_lib_is_constant_evaluated should be defined in c++2a"
+#     error "__cpp_lib_is_constant_evaluated should be defined in c++20"
 #   endif
 #   if __cpp_lib_is_constant_evaluated != 201811L
-#     error "__cpp_lib_is_constant_evaluated should have the value 201811L in c++2a"
+#     error "__cpp_lib_is_constant_evaluated should have the value 201811L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_is_constant_evaluated
 # endif
 
 # ifndef __cpp_lib_is_final
-#   error "__cpp_lib_is_final should be defined in c++2a"
+#   error "__cpp_lib_is_final should be defined in c++20"
 # endif
 # if __cpp_lib_is_final != 201402L
-#   error "__cpp_lib_is_final should have the value 201402L in c++2a"
+#   error "__cpp_lib_is_final should have the value 201402L in c++20"
 # endif
 
 # ifndef __cpp_lib_is_invocable
-#   error "__cpp_lib_is_invocable should be defined in c++2a"
+#   error "__cpp_lib_is_invocable should be defined in c++20"
 # endif
 # if __cpp_lib_is_invocable != 201703L
-#   error "__cpp_lib_is_invocable should have the value 201703L in c++2a"
+#   error "__cpp_lib_is_invocable should have the value 201703L in c++20"
 # endif
 
 # ifndef __cpp_lib_is_null_pointer
-#   error "__cpp_lib_is_null_pointer should be defined in c++2a"
+#   error "__cpp_lib_is_null_pointer should be defined in c++20"
 # endif
 # if __cpp_lib_is_null_pointer != 201309L
-#   error "__cpp_lib_is_null_pointer should have the value 201309L in c++2a"
+#   error "__cpp_lib_is_null_pointer should have the value 201309L in c++20"
 # endif
 
 # ifndef __cpp_lib_is_swappable
-#   error "__cpp_lib_is_swappable should be defined in c++2a"
+#   error "__cpp_lib_is_swappable should be defined in c++20"
 # endif
 # if __cpp_lib_is_swappable != 201603L
-#   error "__cpp_lib_is_swappable should have the value 201603L in c++2a"
+#   error "__cpp_lib_is_swappable should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_launder
-#   error "__cpp_lib_launder should be defined in c++2a"
+#   error "__cpp_lib_launder should be defined in c++20"
 # endif
 # if __cpp_lib_launder != 201606L
-#   error "__cpp_lib_launder should have the value 201606L in c++2a"
+#   error "__cpp_lib_launder should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_list_remove_return_type
-#   error "__cpp_lib_list_remove_return_type should be defined in c++2a"
+#   error "__cpp_lib_list_remove_return_type should be defined in c++20"
 # endif
 # if __cpp_lib_list_remove_return_type != 201806L
-#   error "__cpp_lib_list_remove_return_type should have the value 201806L in c++2a"
+#   error "__cpp_lib_list_remove_return_type should have the value 201806L in c++20"
 # endif
 
 # ifndef __cpp_lib_logical_traits
-#   error "__cpp_lib_logical_traits should be defined in c++2a"
+#   error "__cpp_lib_logical_traits should be defined in c++20"
 # endif
 # if __cpp_lib_logical_traits != 201510L
-#   error "__cpp_lib_logical_traits should have the value 201510L in c++2a"
+#   error "__cpp_lib_logical_traits should have the value 201510L in c++20"
 # endif
 
 # ifndef __cpp_lib_make_from_tuple
-#   error "__cpp_lib_make_from_tuple should be defined in c++2a"
+#   error "__cpp_lib_make_from_tuple should be defined in c++20"
 # endif
 # if __cpp_lib_make_from_tuple != 201606L
-#   error "__cpp_lib_make_from_tuple should have the value 201606L in c++2a"
+#   error "__cpp_lib_make_from_tuple should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_make_reverse_iterator
-#   error "__cpp_lib_make_reverse_iterator should be defined in c++2a"
+#   error "__cpp_lib_make_reverse_iterator should be defined in c++20"
 # endif
 # if __cpp_lib_make_reverse_iterator != 201402L
-#   error "__cpp_lib_make_reverse_iterator should have the value 201402L in c++2a"
+#   error "__cpp_lib_make_reverse_iterator should have the value 201402L in c++20"
 # endif
 
 # ifndef __cpp_lib_make_unique
-#   error "__cpp_lib_make_unique should be defined in c++2a"
+#   error "__cpp_lib_make_unique should be defined in c++20"
 # endif
 # if __cpp_lib_make_unique != 201304L
-#   error "__cpp_lib_make_unique should have the value 201304L in c++2a"
+#   error "__cpp_lib_make_unique should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_map_try_emplace
-#   error "__cpp_lib_map_try_emplace should be defined in c++2a"
+#   error "__cpp_lib_map_try_emplace should be defined in c++20"
 # endif
 # if __cpp_lib_map_try_emplace != 201411L
-#   error "__cpp_lib_map_try_emplace should have the value 201411L in c++2a"
+#   error "__cpp_lib_map_try_emplace should have the value 201411L in c++20"
 # endif
 
 # if defined(__cpp_concepts) && __cpp_concepts >= 201811L
 #   ifndef __cpp_lib_math_constants
-#     error "__cpp_lib_math_constants should be defined in c++2a"
+#     error "__cpp_lib_math_constants should be defined in c++20"
 #   endif
 #   if __cpp_lib_math_constants != 201907L
-#     error "__cpp_lib_math_constants should have the value 201907L in c++2a"
+#     error "__cpp_lib_math_constants should have the value 201907L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_math_constants
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_math_special_functions
-#     error "__cpp_lib_math_special_functions should be defined in c++2a"
+#     error "__cpp_lib_math_special_functions should be defined in c++20"
 #   endif
 #   if __cpp_lib_math_special_functions != 201603L
-#     error "__cpp_lib_math_special_functions should have the value 201603L in c++2a"
+#     error "__cpp_lib_math_special_functions should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_math_special_functions
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_memory_resource
-#     error "__cpp_lib_memory_resource should be defined in c++2a"
+#     error "__cpp_lib_memory_resource should be defined in c++20"
 #   endif
 #   if __cpp_lib_memory_resource != 201603L
-#     error "__cpp_lib_memory_resource should have the value 201603L in c++2a"
+#     error "__cpp_lib_memory_resource should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_memory_resource
 # endif
 
 # ifndef __cpp_lib_node_extract
-#   error "__cpp_lib_node_extract should be defined in c++2a"
+#   error "__cpp_lib_node_extract should be defined in c++20"
 # endif
 # if __cpp_lib_node_extract != 201606L
-#   error "__cpp_lib_node_extract should have the value 201606L in c++2a"
+#   error "__cpp_lib_node_extract should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_nonmember_container_access
-#   error "__cpp_lib_nonmember_container_access should be defined in c++2a"
+#   error "__cpp_lib_nonmember_container_access should be defined in c++20"
 # endif
 # if __cpp_lib_nonmember_container_access != 201411L
-#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++2a"
+#   error "__cpp_lib_nonmember_container_access should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_not_fn
-#   error "__cpp_lib_not_fn should be defined in c++2a"
+#   error "__cpp_lib_not_fn should be defined in c++20"
 # endif
 # if __cpp_lib_not_fn != 201603L
-#   error "__cpp_lib_not_fn should have the value 201603L in c++2a"
+#   error "__cpp_lib_not_fn should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_null_iterators
-#   error "__cpp_lib_null_iterators should be defined in c++2a"
+#   error "__cpp_lib_null_iterators should be defined in c++20"
 # endif
 # if __cpp_lib_null_iterators != 201304L
-#   error "__cpp_lib_null_iterators should have the value 201304L in c++2a"
+#   error "__cpp_lib_null_iterators should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_optional
-#   error "__cpp_lib_optional should be defined in c++2a"
+#   error "__cpp_lib_optional should be defined in c++20"
 # endif
 # if __cpp_lib_optional != 201606L
-#   error "__cpp_lib_optional should have the value 201606L in c++2a"
+#   error "__cpp_lib_optional should have the value 201606L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_parallel_algorithm
-#     error "__cpp_lib_parallel_algorithm should be defined in c++2a"
+#     error "__cpp_lib_parallel_algorithm should be defined in c++20"
 #   endif
 #   if __cpp_lib_parallel_algorithm != 201603L
-#     error "__cpp_lib_parallel_algorithm should have the value 201603L in c++2a"
+#     error "__cpp_lib_parallel_algorithm should have the value 201603L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_parallel_algorithm
 # endif
 
 # ifndef __cpp_lib_quoted_string_io
-#   error "__cpp_lib_quoted_string_io should be defined in c++2a"
+#   error "__cpp_lib_quoted_string_io should be defined in c++20"
 # endif
 # if __cpp_lib_quoted_string_io != 201304L
-#   error "__cpp_lib_quoted_string_io should have the value 201304L in c++2a"
+#   error "__cpp_lib_quoted_string_io should have the value 201304L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_ranges
-#     error "__cpp_lib_ranges should be defined in c++2a"
+#     error "__cpp_lib_ranges should be defined in c++20"
 #   endif
 #   if __cpp_lib_ranges != 201811L
-#     error "__cpp_lib_ranges should have the value 201811L in c++2a"
+#     error "__cpp_lib_ranges should have the value 201811L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_ranges
 # endif
 
 # ifndef __cpp_lib_raw_memory_algorithms
-#   error "__cpp_lib_raw_memory_algorithms should be defined in c++2a"
+#   error "__cpp_lib_raw_memory_algorithms should be defined in c++20"
 # endif
 # if __cpp_lib_raw_memory_algorithms != 201606L
-#   error "__cpp_lib_raw_memory_algorithms should have the value 201606L in c++2a"
+#   error "__cpp_lib_raw_memory_algorithms should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_result_of_sfinae
-#   error "__cpp_lib_result_of_sfinae should be defined in c++2a"
+#   error "__cpp_lib_result_of_sfinae should be defined in c++20"
 # endif
 # if __cpp_lib_result_of_sfinae != 201210L
-#   error "__cpp_lib_result_of_sfinae should have the value 201210L in c++2a"
+#   error "__cpp_lib_result_of_sfinae should have the value 201210L in c++20"
 # endif
 
 # ifndef __cpp_lib_robust_nonmodifying_seq_ops
-#   error "__cpp_lib_robust_nonmodifying_seq_ops should be defined in c++2a"
+#   error "__cpp_lib_robust_nonmodifying_seq_ops should be defined in c++20"
 # endif
 # if __cpp_lib_robust_nonmodifying_seq_ops != 201304L
-#   error "__cpp_lib_robust_nonmodifying_seq_ops should have the value 201304L in c++2a"
+#   error "__cpp_lib_robust_nonmodifying_seq_ops should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_sample
-#   error "__cpp_lib_sample should be defined in c++2a"
+#   error "__cpp_lib_sample should be defined in c++20"
 # endif
 # if __cpp_lib_sample != 201603L
-#   error "__cpp_lib_sample should have the value 201603L in c++2a"
+#   error "__cpp_lib_sample should have the value 201603L in c++20"
 # endif
 
 # ifndef __cpp_lib_scoped_lock
-#   error "__cpp_lib_scoped_lock should be defined in c++2a"
+#   error "__cpp_lib_scoped_lock should be defined in c++20"
 # endif
 # if __cpp_lib_scoped_lock != 201703L
-#   error "__cpp_lib_scoped_lock should have the value 201703L in c++2a"
+#   error "__cpp_lib_scoped_lock should have the value 201703L in c++20"
 # endif
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_shared_mutex
-#     error "__cpp_lib_shared_mutex should be defined in c++2a"
+#     error "__cpp_lib_shared_mutex should be defined in c++20"
 #   endif
 #   if __cpp_lib_shared_mutex != 201505L
-#     error "__cpp_lib_shared_mutex should have the value 201505L in c++2a"
+#     error "__cpp_lib_shared_mutex should have the value 201505L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_shared_mutex
 # endif
 
 # ifndef __cpp_lib_shared_ptr_arrays
-#   error "__cpp_lib_shared_ptr_arrays should be defined in c++2a"
+#   error "__cpp_lib_shared_ptr_arrays should be defined in c++20"
 # endif
 # if __cpp_lib_shared_ptr_arrays != 201611L
-#   error "__cpp_lib_shared_ptr_arrays should have the value 201611L in c++2a"
+#   error "__cpp_lib_shared_ptr_arrays should have the value 201611L in c++20"
 # endif
 
 # ifndef __cpp_lib_shared_ptr_weak_type
-#   error "__cpp_lib_shared_ptr_weak_type should be defined in c++2a"
+#   error "__cpp_lib_shared_ptr_weak_type should be defined in c++20"
 # endif
 # if __cpp_lib_shared_ptr_weak_type != 201606L
-#   error "__cpp_lib_shared_ptr_weak_type should have the value 201606L in c++2a"
+#   error "__cpp_lib_shared_ptr_weak_type should have the value 201606L in c++20"
 # endif
 
 # if !defined(_LIBCPP_HAS_NO_THREADS)
 #   ifndef __cpp_lib_shared_timed_mutex
-#     error "__cpp_lib_shared_timed_mutex should be defined in c++2a"
+#     error "__cpp_lib_shared_timed_mutex should be defined in c++20"
 #   endif
 #   if __cpp_lib_shared_timed_mutex != 201402L
-#     error "__cpp_lib_shared_timed_mutex should have the value 201402L in c++2a"
+#     error "__cpp_lib_shared_timed_mutex should have the value 201402L in c++20"
 #   endif
 # else
 #   ifdef __cpp_lib_shared_timed_mutex
 # endif
 
 # ifndef __cpp_lib_span
-#   error "__cpp_lib_span should be defined in c++2a"
+#   error "__cpp_lib_span should be defined in c++20"
 # endif
 # if __cpp_lib_span != 202002L
-#   error "__cpp_lib_span should have the value 202002L in c++2a"
+#   error "__cpp_lib_span should have the value 202002L in c++20"
 # endif
 
 # ifndef __cpp_lib_string_udls
-#   error "__cpp_lib_string_udls should be defined in c++2a"
+#   error "__cpp_lib_string_udls should be defined in c++20"
 # endif
 # if __cpp_lib_string_udls != 201304L
-#   error "__cpp_lib_string_udls should have the value 201304L in c++2a"
+#   error "__cpp_lib_string_udls should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_string_view
-#   error "__cpp_lib_string_view should be defined in c++2a"
+#   error "__cpp_lib_string_view should be defined in c++20"
 # endif
 # if __cpp_lib_string_view != 201606L
-#   error "__cpp_lib_string_view should have the value 201606L in c++2a"
+#   error "__cpp_lib_string_view should have the value 201606L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_three_way_comparison
-#     error "__cpp_lib_three_way_comparison should be defined in c++2a"
+#     error "__cpp_lib_three_way_comparison should be defined in c++20"
 #   endif
 #   if __cpp_lib_three_way_comparison != 201711L
-#     error "__cpp_lib_three_way_comparison should have the value 201711L in c++2a"
+#     error "__cpp_lib_three_way_comparison should have the value 201711L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_three_way_comparison
 # endif
 
 # ifndef __cpp_lib_to_array
-#   error "__cpp_lib_to_array should be defined in c++2a"
+#   error "__cpp_lib_to_array should be defined in c++20"
 # endif
 # if __cpp_lib_to_array != 201907L
-#   error "__cpp_lib_to_array should have the value 201907L in c++2a"
+#   error "__cpp_lib_to_array should have the value 201907L in c++20"
 # endif
 
 # if !defined(_LIBCPP_VERSION)
 #   ifndef __cpp_lib_to_chars
-#     error "__cpp_lib_to_chars should be defined in c++2a"
+#     error "__cpp_lib_to_chars should be defined in c++20"
 #   endif
 #   if __cpp_lib_to_chars != 201611L
-#     error "__cpp_lib_to_chars should have the value 201611L in c++2a"
+#     error "__cpp_lib_to_chars should have the value 201611L in c++20"
 #   endif
 # else // _LIBCPP_VERSION
 #   ifdef __cpp_lib_to_chars
 # endif
 
 # ifndef __cpp_lib_transformation_trait_aliases
-#   error "__cpp_lib_transformation_trait_aliases should be defined in c++2a"
+#   error "__cpp_lib_transformation_trait_aliases should be defined in c++20"
 # endif
 # if __cpp_lib_transformation_trait_aliases != 201304L
-#   error "__cpp_lib_transformation_trait_aliases should have the value 201304L in c++2a"
+#   error "__cpp_lib_transformation_trait_aliases should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_transparent_operators
-#   error "__cpp_lib_transparent_operators should be defined in c++2a"
+#   error "__cpp_lib_transparent_operators should be defined in c++20"
 # endif
 # if __cpp_lib_transparent_operators != 201510L
-#   error "__cpp_lib_transparent_operators should have the value 201510L in c++2a"
+#   error "__cpp_lib_transparent_operators should have the value 201510L in c++20"
 # endif
 
 # ifndef __cpp_lib_tuple_element_t
-#   error "__cpp_lib_tuple_element_t should be defined in c++2a"
+#   error "__cpp_lib_tuple_element_t should be defined in c++20"
 # endif
 # if __cpp_lib_tuple_element_t != 201402L
-#   error "__cpp_lib_tuple_element_t should have the value 201402L in c++2a"
+#   error "__cpp_lib_tuple_element_t should have the value 201402L in c++20"
 # endif
 
 # ifndef __cpp_lib_tuples_by_type
-#   error "__cpp_lib_tuples_by_type should be defined in c++2a"
+#   error "__cpp_lib_tuples_by_type should be defined in c++20"
 # endif
 # if __cpp_lib_tuples_by_type != 201304L
-#   error "__cpp_lib_tuples_by_type should have the value 201304L in c++2a"
+#   error "__cpp_lib_tuples_by_type should have the value 201304L in c++20"
 # endif
 
 # ifndef __cpp_lib_type_trait_variable_templates
-#   error "__cpp_lib_type_trait_variable_templates should be defined in c++2a"
+#   error "__cpp_lib_type_trait_variable_templates should be defined in c++20"
 # endif
 # if __cpp_lib_type_trait_variable_templates != 201510L
-#   error "__cpp_lib_type_trait_variable_templates should have the value 201510L in c++2a"
+#   error "__cpp_lib_type_trait_variable_templates should have the value 201510L in c++20"
 # endif
 
 # ifndef __cpp_lib_uncaught_exceptions
-#   error "__cpp_lib_uncaught_exceptions should be defined in c++2a"
+#   error "__cpp_lib_uncaught_exceptions should be defined in c++20"
 # endif
 # if __cpp_lib_uncaught_exceptions != 201411L
-#   error "__cpp_lib_uncaught_exceptions should have the value 201411L in c++2a"
+#   error "__cpp_lib_uncaught_exceptions should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_unordered_map_try_emplace
-#   error "__cpp_lib_unordered_map_try_emplace should be defined in c++2a"
+#   error "__cpp_lib_unordered_map_try_emplace should be defined in c++20"
 # endif
 # if __cpp_lib_unordered_map_try_emplace != 201411L
-#   error "__cpp_lib_unordered_map_try_emplace should have the value 201411L in c++2a"
+#   error "__cpp_lib_unordered_map_try_emplace should have the value 201411L in c++20"
 # endif
 
 # ifndef __cpp_lib_variant
-#   error "__cpp_lib_variant should be defined in c++2a"
+#   error "__cpp_lib_variant should be defined in c++20"
 # endif
 # if __cpp_lib_variant != 201606L
-#   error "__cpp_lib_variant should have the value 201606L in c++2a"
+#   error "__cpp_lib_variant should have the value 201606L in c++20"
 # endif
 
 # ifndef __cpp_lib_void_t
-#   error "__cpp_lib_void_t should be defined in c++2a"
+#   error "__cpp_lib_void_t should be defined in c++20"
 # endif
 # if __cpp_lib_void_t != 201411L
-#   error "__cpp_lib_void_t should have the value 201411L in c++2a"
+#   error "__cpp_lib_void_t should have the value 201411L in c++20"
 # endif
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) { return 0; }
index f50f48f..5f8ac2e 100644 (file)
 # define TEST_STD_VER 14
 #elif __cplusplus <= 201703L
 # define TEST_STD_VER 17
+#elif __cplusplus <= 202002L
+# define TEST_STD_VER 20
 #else
 # define TEST_STD_VER 99    // greater than current standard
 // This is deliberately different than _LIBCPP_STD_VER to discourage matching them up.
index d10c464..2a469f3 100644 (file)
@@ -64,7 +64,7 @@ steps:
           limit: 2
 
   - label: "C++20"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx2a"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx20"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
@@ -186,7 +186,7 @@ steps:
           limit: 2
 
   - label: "MacOS C++20"
-    command: "libcxx/utils/ci/run-buildbot generic-cxx2a"
+    command: "libcxx/utils/ci/run-buildbot generic-cxx20"
     artifact_paths:
       - "**/test-results.xml"
       - "**/*.abilist"
index 20dca59..3a394de 100755 (executable)
@@ -137,11 +137,11 @@ generic-cxx17)
     check-cxx-cxxabi
     check-abi-list
 ;;
-generic-cxx2a)
+generic-cxx20)
     export CC=clang
     export CXX=clang++
     clean
-    generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx2a.cmake"
+    generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx20.cmake"
     check-cxx-cxxabi
     check-abi-list
 ;;
index 091fea4..2302dc4 100755 (executable)
@@ -289,7 +289,7 @@ feature_test_macros = sorted([ add_version_header(x) for x in [
     "headers": ["unordered_map"],
   }, {
     "name": "__cpp_lib_array_constexpr",
-    "values": { "c++17": int(201603), "c++2a": int(201811) },
+    "values": { "c++17": int(201603), "c++20": int(201811) },
     "headers": ["iterator", "array"],
   }, {
     "name": "__cpp_lib_nonmember_container_access",
@@ -328,22 +328,22 @@ feature_test_macros = sorted([ add_version_header(x) for x in [
     "values": { "c++17": int(201703) },
     "headers": ["mutex"],
   },
-  # C++2a
+  # C++20
   {
     "name": "__cpp_lib_char8_t",
-    "values": { "c++2a": int(201811) },
+    "values": { "c++20": int(201811) },
     "headers": ["atomic", "filesystem", "istream", "limits", "locale", "ostream",
                 "string", "string_view"],
     "depends": "defined(__cpp_char8_t)",
     "internal_depends": "!defined(_LIBCPP_NO_HAS_CHAR8_T)",
   }, {
     "name": "__cpp_lib_erase_if",
-    "values": { "c++2a": int(202002) },
+    "values": { "c++20": int(202002) },
     "headers": ["string", "deque", "forward_list", "list", "vector", "map",
                 "set", "unordered_map", "unordered_set"]
   }, {
     "name": "__cpp_lib_destroying_delete",
-    "values": { "c++2a": int(201806) },
+    "values": { "c++20": int(201806) },
     "headers": ["new"],
     "depends":
       "TEST_STD_VER > 17"
@@ -355,135 +355,135 @@ feature_test_macros = sorted([ add_version_header(x) for x in [
       " && __cpp_impl_destroying_delete >= 201806L",
   }, {
     "name": "__cpp_lib_three_way_comparison",
-    "values": { "c++2a": int(201711) },
+    "values": { "c++20": int(201711) },
     "headers": ["compare"],
     "unimplemented": True,
   }, {
     "name": "__cpp_lib_concepts",
-    "values": { "c++2a": int(201806) },
+    "values": { "c++20": int(201806) },
     "headers": ["concepts"],
     "unimplemented": True,
   }, {
     "name": "__cpp_lib_constexpr_swap_algorithms",
-    "values": { "c++2a": int(201806) },
+    "values": { "c++20": int(201806) },
     "headers": ["algorithm"],
     "unimplemented": True,
   }, {
     "name": "__cpp_lib_constexpr_functional",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["functional"],
   }, {
     "name": "__cpp_lib_constexpr_numeric",
-    "values": { "c++2a": int(201911) },
+    "values": { "c++20": int(201911) },
     "headers": ["numeric"],
   }, {
     "name": "__cpp_lib_bind_front",
-    "values": { "c++2a": int(201811) },
+    "values": { "c++20": int(201811) },
     "headers": ["functional"],
     "unimplemented": True,
   }, {
     "name": "__cpp_lib_is_constant_evaluated",
-    "values": { "c++2a": int(201811) },
+    "values": { "c++20": int(201811) },
     "headers": ["type_traits"],
     "depends": "TEST_HAS_BUILTIN(__builtin_is_constant_evaluated) || TEST_GCC_VER >= 900",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_BUILTIN_IS_CONSTANT_EVALUATED)",
   }, {
     "name": "__cpp_lib_list_remove_return_type",
-    "values": { "c++2a": int(201806) },
+    "values": { "c++20": int(201806) },
     "headers": ["forward_list", "list"],
   }, {
     "name": "__cpp_lib_generic_unordered_lookup",
-    "values": { "c++2a": int(201811) },
+    "values": { "c++20": int(201811) },
     "headers": ["unordered_map", "unordered_set"],
   }, {
     "name": "__cpp_lib_ranges",
-    "values": { "c++2a": int(201811) },
+    "values": { "c++20": int(201811) },
     "headers": ["algorithm", "functional", "iterator", "memory", "ranges"],
     "unimplemented": True,
   }, {
     "name": "__cpp_lib_bit_cast",
-    "values": { "c++2a": int(201806) },
+    "values": { "c++20": int(201806) },
     "headers": ["bit"],
     "unimplemented": True,
   }, {
     "name": "__cpp_lib_atomic_ref",
-    "values": { "c++2a": int(201806) },
+    "values": { "c++20": int(201806) },
     "headers": ["atomic"],
     "unimplemented": True,
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_int_pow2",
-    "values": { "c++2a": int(202002) },
+    "values": { "c++20": int(202002) },
     "headers": ["bit"],
   }, {
     "name": "__cpp_lib_interpolate",
-    "values": { "c++2a": int(201902) },
+    "values": { "c++20": int(201902) },
     "headers": ["numeric"],
   }, {
     "name": "__cpp_lib_endian",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["bit"],
   }, {
     "name": "__cpp_lib_to_array",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["array"],
   }, {
     "name": "__cpp_lib_span",
-    "values": { "c++2a": int(202002) },
+    "values": { "c++20": int(202002) },
     "headers": ["span"],
   }, {
     "name": "__cpp_lib_math_constants",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["numbers"],
     "depends": "defined(__cpp_concepts) && __cpp_concepts >= 201811L",
     "internal_depends": "defined(__cpp_concepts) && __cpp_concepts >= 201811L",
   }, {
     "name": "__cpp_lib_constexpr_utility",
-    "values": { "c++2a": int(201811) },
+    "values": { "c++20": int(201811) },
     "headers": ["utility"],
   }, {
     "name": "__cpp_lib_atomic_flag_test",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["atomic"],
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_atomic_lock_free_type_aliases",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["atomic"],
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_atomic_wait",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["atomic"],
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_atomic_float",
-    "values": { "c++2a": int(201711) },
+    "values": { "c++20": int(201711) },
     "headers": ["atomic"],
     "unimplemented": True,
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_atomic_shared_ptr",
-    "values": { "c++2a": int(201711) },
+    "values": { "c++20": int(201711) },
     "headers": ["atomic"],
     "unimplemented": True,
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_atomic_value_initialization",
-    "values": { "c++2a": int(201911) },
+    "values": { "c++20": int(201911) },
     "headers": ["atomic", "memory"],
     "unimplemented": True,
     "depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
     "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)",
   }, {
     "name": "__cpp_lib_constexpr_dynamic_alloc",
-    "values": { "c++2a": int(201907) },
+    "values": { "c++20": int(201907) },
     "headers": ["memory"]
   },
 ]], key=lambda tc: tc["name"])
@@ -506,7 +506,7 @@ lit_markup = {
 }
 
 def get_std_dialects():
-  std_dialects = ['c++14', 'c++17', 'c++2a']
+  std_dialects = ['c++14', 'c++17', 'c++20']
   return list(std_dialects)
 
 def get_first_std(d):
@@ -656,7 +656,7 @@ def produce_version_header():
 #endif
 
 #if _LIBCPP_STD_VER > 17
-{cxx2a_macros}
+{cxx20_macros}
 #endif
 
 #endif // _LIBCPP_VERSIONH
@@ -666,7 +666,7 @@ def produce_version_header():
       synopsis=produce_version_synopsis().strip(),
       cxx14_macros=produce_macros_definition_for_std('c++14').strip(),
       cxx17_macros=produce_macros_definition_for_std('c++17').strip(),
-      cxx2a_macros=produce_macros_definition_for_std('c++2a').strip())
+      cxx20_macros=produce_macros_definition_for_std('c++20').strip())
 
   version_header_path = os.path.join(include_path, 'version')
   with open(version_header_path, 'w', newline='\n') as f:
@@ -798,11 +798,11 @@ def produce_tests():
 
 {cxx17_tests}
 
-#elif TEST_STD_VER > 17
+#elif TEST_STD_VER == 20
 
-{cxx2a_tests}
+{cxx20_tests}
 
-#endif // TEST_STD_VER > 17
+#endif // TEST_STD_VER == 20
 
 int main(int, char**) {{ return 0; }}
 """.format(script_name=script_name,
@@ -812,7 +812,7 @@ int main(int, char**) {{ return 0; }}
            cxx11_tests=generate_std_test(test_list, 'c++11').strip(),
            cxx14_tests=generate_std_test(test_list, 'c++14').strip(),
            cxx17_tests=generate_std_test(test_list, 'c++17').strip(),
-           cxx2a_tests=generate_std_test(test_list, 'c++2a').strip())
+           cxx20_tests=generate_std_test(test_list, 'c++20').strip())
     test_name = "{header}.version.pass.cpp".format(header=h)
     out_path = os.path.join(macro_test_path, test_name)
     with open(out_path, 'w', newline='\n') as f: