This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-6-branch in repository gcc.
from 73eac751fc8 Daily bump. new 709329373f6 PR libstdc++/66145 allow catching iostream errors as cxx11 [...] new d01a490ae9f Fix std::codecvt_utf8<wchar_t> for Mingw new 5ab99f40e9b PR libstdc++/86734 use addressof in reverse_iterator::operator-> new 5bd249ec170 PR libstdc++/60555 std::system_category() should recognise [...] new e65f1855c1f Improve libstdc++ docs w.r.t newer C++ standards new c90471bf15b PR libstdc++/86292 fix exception safety of std::vector<Inpu [...] new 89a9a131544 PR libstdc++/68519 use native duration to avoid rounding errors new 4cce07c1c16 PR libstdc++/80893 Fix null dereference in vector<bool> new f2de9365dfc Add noexcept to std::shared_future copy operations (LWG DR 2799) new 6e749e956f3 LWG 3050 Fix cv-qualification of convertibility constraints new bf4a4428b24 Add noexcept to std::integral_constant members
The 11 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: libstdc++-v3/ChangeLog | 138 +++++++++++ libstdc++-v3/doc/html/manual/index.html | 2 +- libstdc++-v3/doc/html/manual/using_headers.html | 62 ++++- libstdc++-v3/doc/xml/manual/using.xml | 244 +++++++++++++------- libstdc++-v3/include/bits/stl_bvector.h | 14 +- libstdc++-v3/include/bits/stl_iterator.h | 5 +- libstdc++-v3/include/bits/stl_vector.h | 27 ++- libstdc++-v3/include/std/chrono | 10 +- libstdc++-v3/include/std/condition_variable | 16 +- libstdc++-v3/include/std/future | 4 +- libstdc++-v3/include/std/type_traits | 4 +- libstdc++-v3/include/std/utility | 2 +- libstdc++-v3/src/c++11/codecvt.cc | 7 +- libstdc++-v3/src/c++11/cxx11-ios_failure.cc | 26 +++ libstdc++-v3/src/c++11/ios.cc | 16 -- libstdc++-v3/src/c++11/system_error.cc | 256 +++++++++++++++++++++ libstdc++-v3/src/c++98/Makefile.am | 20 ++ libstdc++-v3/src/c++98/Makefile.in | 18 ++ libstdc++-v3/src/c++98/ios_failure.cc | 87 +++++++ .../error_category/generic_category.cc | 69 ++++++ .../error_category/system_category.cc | 114 +++++++++ .../79114.cc => 20_util/duration/cons/dr3050.cc} | 14 +- .../duration/literals/{range.cc => range_neg.cc} | 2 +- .../22_locale/codecvt/codecvt_utf8/69703.cc | 5 +- .../codecvt/codecvt_utf8/wchar_t/1.cc} | 30 ++- .../vector/{59829.cc => bool/80893.cc} | 29 ++- .../vector/cons/86292.cc} | 44 ++-- .../reverse_iterator/dr2188.cc} | 25 +- .../testsuite/27_io/basic_ios/copyfmt/char/1.cc | 3 - .../testsuite/27_io/basic_ios/exceptions/char/1.cc | 3 - .../char/exceptions_failbit.cc | 5 +- .../wchar_t/exceptions_failbit.cc | 5 +- .../extractors_other/char/exceptions_null.cc | 3 - .../extractors_other/wchar_t/exceptions_null.cc | 3 - .../27_io/basic_istream/sentry/char/12297.cc | 5 +- .../27_io/basic_istream/sentry/wchar_t/12297.cc | 5 +- .../inserters_other/char/exceptions_null.cc | 5 +- .../inserters_other/wchar_t/exceptions_null.cc | 5 +- .../testsuite/27_io/ios_base/failure/dual_abi.cc | 98 ++++++++ libstdc++-v3/testsuite/27_io/ios_base/storage/2.cc | 7 +- .../members/68519.cc} | 38 +-- libstdc++-v3/testsuite/util/testsuite_allocator.h | 8 +- 42 files changed, 1240 insertions(+), 243 deletions(-) create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_category/generic_ca [...] create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_category/system_cat [...] copy libstdc++-v3/testsuite/{18_support/nested_exception/79114.cc => 20_util/durat [...] rename libstdc++-v3/testsuite/20_util/duration/literals/{range.cc => range_neg.cc} (94%) copy libstdc++-v3/testsuite/{26_numerics/random/chi_squared_distribution/83833.cc [...] copy libstdc++-v3/testsuite/23_containers/vector/{59829.cc => bool/80893.cc} (72%) copy libstdc++-v3/testsuite/{20_util/function/cons/55320.cc => 23_containers/vecto [...] copy libstdc++-v3/testsuite/{26_numerics/random/chi_squared_distribution/83833.cc [...] create mode 100644 libstdc++-v3/testsuite/27_io/ios_base/failure/dual_abi.cc copy libstdc++-v3/testsuite/30_threads/{call_once/dr2442.cc => condition_variable/ [...]