diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-05-25 10:06:14 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-05-31 13:17:44 +0100 |
commit | 979f8bfd3164d23e6bd192a00e89eb1fc8f5b4a3 (patch) | |
tree | f928418dc10facc25512fb6778ead71674a20c43 /libstdc++-v3/include/std/iomanip | |
parent | 95e5c38a98cc64a797b1d766a20f8c0d0c807a74 (diff) | |
download | gcc-979f8bfd3164d23e6bd192a00e89eb1fc8f5b4a3.zip gcc-979f8bfd3164d23e6bd192a00e89eb1fc8f5b4a3.tar.gz gcc-979f8bfd3164d23e6bd192a00e89eb1fc8f5b4a3.tar.bz2 |
libstdc++: Deprecate std::setfill for std::basic_istream [PR109922]
Prior to N0966 (July 1996) the std::setfill manipulator was specified to
work with both input and output streams. In the final C++98 standard it
is only specified to work with output streams.
We have always supported it for input streams, despite that never being
in the standard, and having no meaning for any input streams defined by
the standard. This commit adds a deprecated attribute to the overload
for input streams, so that we can stop supporting this some day.
libstdc++-v3/ChangeLog:
PR libstdc++/109922
* include/std/iomanip (operator>>(basic_istream&, _Setfill)):
Add deprecated attribute to non-standard overload.
* doc/xml/manual/evolution.xml: Document deprecation.
* doc/html/*: Regenerate.
* testsuite/27_io/manipulators/standard/char/1.cc: Add
dg-warning for expected deprecated warning.
* testsuite/27_io/manipulators/standard/char/2.cc: Likewise.
* testsuite/27_io/manipulators/standard/wchar_t/1.cc: Likewise.
* testsuite/27_io/manipulators/standard/wchar_t/2.cc: Likewise.
Diffstat (limited to 'libstdc++-v3/include/std/iomanip')
-rw-r--r-- | libstdc++-v3/include/std/iomanip | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++-v3/include/std/iomanip b/libstdc++-v3/include/std/iomanip index 5c0fb09..eb82fc5 100644 --- a/libstdc++-v3/include/std/iomanip +++ b/libstdc++-v3/include/std/iomanip @@ -168,6 +168,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { return { __c }; } template<typename _CharT, typename _Traits> + __attribute__((__deprecated__("'std::setfill' should only be used with " + "output streams"))) inline basic_istream<_CharT, _Traits>& operator>>(basic_istream<_CharT, _Traits>& __is, _Setfill<_CharT> __f) { |