diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2022-02-17 17:37:42 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2022-02-17 23:44:25 +0000 |
commit | 12a88e6e208fa45a449775bfb9353c777a6081aa (patch) | |
tree | e941071396352f3309d3c49a14f8e7c08936b23e /libstdc++-v3/doc/html | |
parent | 2c9b7077b72529fbbe896212a0088bff6025c5e7 (diff) | |
download | gcc-12a88e6e208fa45a449775bfb9353c777a6081aa.zip gcc-12a88e6e208fa45a449775bfb9353c777a6081aa.tar.gz gcc-12a88e6e208fa45a449775bfb9353c777a6081aa.tar.bz2 |
libstdc++: Deprecate non-standard std::vector<bool>::insert(pos) [PR104559]
The SGI STL and pre-1998 drafts of the C++ standard had a default
argument for vector<bool>::insert(iterator, const bool&) which was
remove by N1051. The default argument is still present in libstdc++ for
some reason. There are no tests verifying it as an extension, so I don't
think it has been kept intentionally.
This removes the default argument but adds an overload without the
second parameter, and adds the deprecated attribute to it. This allows
any code using it to keep working (for now) but with a warning.
libstdc++-v3/ChangeLog:
PR libstdc++/104559
* doc/xml/manual/evolution.xml: Document deprecation.
* doc/html/manual/api.html: Regenerate.
* include/bits/stl_bvector.h (insert(const_iterator, const bool&)):
Remove default argument.
(insert(const_iterator)): New overload with deprecated attribute.
* testsuite/23_containers/vector/bool/modifiers/insert/104559.cc:
New test.
Diffstat (limited to 'libstdc++-v3/doc/html')
-rw-r--r-- | libstdc++-v3/doc/html/manual/api.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libstdc++-v3/doc/html/manual/api.html b/libstdc++-v3/doc/html/manual/api.html index 2608777..bbda6f5 100644 --- a/libstdc++-v3/doc/html/manual/api.html +++ b/libstdc++-v3/doc/html/manual/api.html @@ -454,6 +454,9 @@ were deprecated for C++11. were deprecated for C++17. </p><p> Non-standard <code class="code">std::pair</code> constructors were deprecated. +A non-standard default argument for +<code class="code">vector<bool>::insert(const_iterator, const bool&)</code> +was deprecated. </p><p> The <code class="literal">bitmap</code>, <code class="literal">mt</code>, and <code class="literal">pool</code> options for <code class="option">--enable-libstdcxx-allocator</code> were removed. |