]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
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 654c6a807478205793b897ab7667bf42ed9ef4e1..db7cdb14ca97b2e3dd0c1196c3b9a802d36096e3 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
     {