libstdc++: Fix inconsistent feature test macros
authorJonathan Wakely <jwakely@redhat.com>
Fri, 30 Apr 2021 19:32:05 +0000 (20:32 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 30 Apr 2021 20:58:45 +0000 (21:58 +0100)
The __cpp_lib_constexpr_string and __cpp_lib_semaphore feature test
macros are not defined consistently in <version> and the relevant header
for the feature.

libstdc++-v3/ChangeLog:

* include/bits/basic_string.h (__cpp_lib_constexpr_string):
Only define for C++17 and later.
* include/std/version (__cpp_lib_semaphore): Fix condition
to match the one in <semaphore>.

libstdc++-v3/include/bits/basic_string.h
libstdc++-v3/include/std/version

index 41d781c..fba7c6f 100644 (file)
@@ -55,7 +55,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 #if __cplusplus == 201703L
 // Support P0426R1 changes to char_traits in C++17.
 # define __cpp_lib_constexpr_string 201611L
-#else
+#elif __cplusplus > 201703L
 // Also support P1032R1 in C++20 (but not P0980R1 yet).
 # define __cpp_lib_constexpr_string 201811L
 #endif
index 09e67a4..ea0e18a 100644 (file)
 #if __cpp_lib_concepts
 # define __cpp_lib_ranges 201911L
 #endif
-#if __cpp_lib_atomic_wait
+#if __cpp_lib_atomic_wait || _GLIBCXX_HAVE_POSIX_SEMAPHORE
 # define __cpp_lib_semaphore 201907L
 #endif
 #define __cpp_lib_shift 201806L