[gcc r12-5450] libstdc++: Fix condition for definition of _GLIBCXX14_DEPRECATED

Jonathan Wakely redi@gcc.gnu.org
Mon Nov 22 14:57:23 GMT 2021


https://gcc.gnu.org/g:d7376862b6dba35a192e3a80e9858d38f9709438

commit r12-5450-gd7376862b6dba35a192e3a80e9858d38f9709438
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Nov 19 20:58:31 2021 +0000

    libstdc++: Fix condition for definition of _GLIBCXX14_DEPRECATED
    
    The check for C++14 was using the wrong date.
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/c++config (_GLIBCXX14_DEPRECATED): Fix condition
            checking for C++14.

Diff:
---
 libstdc++-v3/include/bits/c++config | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config
index 4b7fa659300..cbcdedb366f 100644
--- a/libstdc++-v3/include/bits/c++config
+++ b/libstdc++-v3/include/bits/c++config
@@ -107,7 +107,7 @@
 # define _GLIBCXX11_DEPRECATED_SUGGEST(ALT)
 #endif
 
-#if defined(__DEPRECATED) && (__cplusplus >= 201403L)
+#if defined(__DEPRECATED) && (__cplusplus >= 201402L)
 # define _GLIBCXX14_DEPRECATED _GLIBCXX_DEPRECATED
 # define _GLIBCXX14_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
 #else
@@ -123,7 +123,7 @@
 # define _GLIBCXX17_DEPRECATED_SUGGEST(ALT)
 #endif
 
-#if defined(__DEPRECATED) && (__cplusplus > 201703L)
+#if defined(__DEPRECATED) && (__cplusplus >= 202002L)
 # define _GLIBCXX20_DEPRECATED(MSG) [[deprecated(MSG)]]
 # define _GLIBCXX20_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
 #else


More information about the Libstdc++-cvs mailing list