libstdc++: Fix deprecated attribute for std::get_temporary_buffer
authorJonathan Wakely <jwakely@redhat.com>
Tue, 18 Jan 2022 22:27:57 +0000 (22:27 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 19 Jan 2022 00:58:25 +0000 (00:58 +0000)
This was deprecated in C++17, not C++14.

libstdc++-v3/ChangeLog:

* include/bits/stl_tempbuf.h (get_temporary_buffer): Change
_GLIBCXX14_DEPRECATED to _GLIBCXX17_DEPRECATED.

libstdc++-v3/include/bits/stl_tempbuf.h

index 654c6a8..db7cdb1 100644 (file)
@@ -96,7 +96,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    * Provides the nothrow exception guarantee.
    */
   template<typename _Tp>
-    _GLIBCXX14_DEPRECATED
+    _GLIBCXX17_DEPRECATED
     pair<_Tp*, ptrdiff_t>
     get_temporary_buffer(ptrdiff_t __len) _GLIBCXX_NOEXCEPT
     {