This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-9 in repository gcc.
from b65a8f3489a Daily bump. new 592ecfc48c7 libstdc++: Add noexcept to std::begin etc as per LWG 2280 and 3537 new 4b4ddaab3f3 libstdc++: Fix test failure on AIX new 0c988762f2d libstdc++: Fix incorrect test for std::error_code comparisons new 31a5cc60428 libstdc++: Add assertions for preconditions in sampling dis [...] new 053411d6d27 libstdc++: Fix documentation for return values of copy algos new db5804d6ccd libstdc++: Fix doxygen comment for std::any_of new af06fe692ab libstdc++: Fix errors in <experimental/internet> new d7bc0ab9700 libstdc++: Include scope ID in net::internet::address_v6::t [...] new 29dad307b5d libstdc++: Initialize std::normal_distribution::_M_saved [P [...] new b06bc096c4d libstdc++: Handle EPERM for filesystem access errors on Mac [...] new 4160c7da622 libstdc++: Use correct error category for Windows error codes new 5e12dd3428a libstdc++: Fix spelling of __MINGW32__ macros new 9c01c3136aa maintainer-scripts: Disable multilib when generating libstd [...] new 51d19b9b06c libstdc++: Add noexcept to declaration of path::_List members new fc075ad624f libstdc++: Fix directory_iterator exception specification new 9f5c8ec3d17 libstdc++: Fix failing tests for AIX new 90293cb2a79 libstdc++: Fix net::system_context stop condition new 8ceccbc3bbb libstdc++: Fix outdated comment about std::string instantia [...] new 6cc765a7917 Have std::vector printer's iterator return bool for vector<bool> new b2a1a375141 Improve tests for std::vector<bool> printer new 0022a036490 libstdc++: Implement LWG 561 for std::inserter new e59253bd0ab libstdc++: Make std::copy_n work with negative sizes
The 22 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/include/bits/basic_string.tcc | 10 +- libstdc++-v3/include/bits/fs_path.h | 8 +- libstdc++-v3/include/bits/random.h | 8 +- libstdc++-v3/include/bits/random.tcc | 3 + libstdc++-v3/include/bits/range_access.h | 12 +- libstdc++-v3/include/bits/stl_algo.h | 8 +- libstdc++-v3/include/bits/stl_algobase.h | 8 +- libstdc++-v3/include/bits/stl_iterator.h | 9 +- libstdc++-v3/include/experimental/executor | 5 +- libstdc++-v3/include/experimental/internet | 44 ++++++-- libstdc++-v3/include/experimental/io_context | 10 +- libstdc++-v3/python/libstdcxx/v6/printers.py | 12 +- libstdc++-v3/src/c++17/fs_dir.cc | 8 +- libstdc++-v3/src/c++17/fs_ops.cc | 8 +- libstdc++-v3/src/filesystem/dir-common.h | 12 ++ libstdc++-v3/src/filesystem/dir.cc | 2 +- libstdc++-v3/src/filesystem/ops.cc | 4 +- libstdc++-v3/testsuite/17_intro/names.cc | 2 + .../error_code/operators/{equal.cc => less.cc} | 16 +-- .../error_code/operators/not_equal.cc | 3 +- .../operators/{equal.cc => less.cc} | 21 ++-- .../cons/constexpr.cc => insert_iterator/dr561.cc} | 33 ++++-- .../testsuite/24_iterators/range_access.cc | 30 +++++ .../testsuite/24_iterators/range_access_cpp14.cc | 15 +++ .../testsuite/24_iterators/range_access_cpp17.cc | 14 +++ .../97731.cc => 25_algorithms/copy_n/5.cc} | 35 +++--- .../testsuite/26_numerics/random/pr60037-neg.cc | 2 +- .../27_io/filesystem/operations/proximate.cc | 2 +- .../27_io/filesystem/path/compare/lwg2936.cc | 2 +- .../27_io/filesystem/path/generation/proximate.cc | 2 +- .../27_io/filesystem/path/generation/relative.cc | 2 +- .../testsuite/30_threads/thread/cons/84535.cc | 3 + .../testsuite/30_threads/thread/cons/lwg2097.cc | 3 + .../net/internet/address/v4/members.cc | 30 ++--- .../net/internet/address/v6/members.cc | 122 +++++++++++++++++++++ .../net/system_context/1.cc} | 28 +++-- .../testsuite/libstdc++-prettyprinters/simple.cc | 11 ++ .../testsuite/libstdc++-prettyprinters/simple11.cc | 11 ++ libstdc++-v3/testsuite/util/testsuite_fs.h | 2 +- libstdc++-v3/testsuite/util/testsuite_iterators.h | 2 +- maintainer-scripts/generate_libstdcxx_web_docs | 2 +- 41 files changed, 421 insertions(+), 143 deletions(-) copy libstdc++-v3/testsuite/19_diagnostics/error_code/operators/{equal.cc => less. [...] copy libstdc++-v3/testsuite/19_diagnostics/error_condition/operators/{equal.cc => [...] copy libstdc++-v3/testsuite/24_iterators/{istream_iterator/cons/constexpr.cc => in [...] copy libstdc++-v3/testsuite/{experimental/filesystem/iterators/97731.cc => 25_algo [...] create mode 100644 libstdc++-v3/testsuite/experimental/net/internet/address/v6/members.cc copy libstdc++-v3/testsuite/{30_threads/shared_timed_mutex/94069.cc => experimenta [...]