This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-13 in repository gcc.
from 41e3fd01c20 PR modula2/109779 isolib SkipLine skips the first character [...] new 3f782949696 libstdc++: Add deprecated attribute to std::random_shuffle [...] new 962cd3e2c47 libstdc++: Avoid bogus overflow warnings in std::vector<boo [...] new 52010f9449a libstdc++: Add missing constexpr specifiers in <format> new 13dd1501a1a libstdc++: Check for std::ratio in arithmetic and compariso [...] new 6302b8b7ed2 libstdc++: Avoid warning in std::format new 74f1c016f44 libstdc++: Check for multiple modifiers in chrono format st [...] new cb01a31ab27 libstdc++: Implement correct locale-specific chrono formatt [...] new 24c352c41eb libstdc++: Fix locale-specific duration formatting [PR110719] new 9fed693b161 libstdc++: Fix formatting of negative chrono::hh_mm_ss
The 9 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/algorithmfwd.h | 2 + libstdc++-v3/include/bits/chrono.h | 19 +- libstdc++-v3/include/bits/chrono_io.h | 339 +++++++++++++-------- libstdc++-v3/include/bits/stl_algo.h | 6 +- libstdc++-v3/include/bits/stl_bvector.h | 3 +- libstdc++-v3/include/bits/vector.tcc | 5 +- libstdc++-v3/include/std/format | 5 +- libstdc++-v3/include/std/ratio | 53 +++- libstdc++-v3/testsuite/20_util/duration/io.cc | 4 + .../20_util/duration/requirements/typedefs_neg1.cc | 2 +- .../20_util/duration/requirements/typedefs_neg2.cc | 2 +- .../20_util/ratio/requirements/type_constraints.cc | 34 +++ .../testsuite/23_containers/vector/bool/110807.cc | 14 + .../testsuite/25_algorithms/random_shuffle/1.cc | 1 + .../25_algorithms/random_shuffle/59603.cc | 1 + .../25_algorithms/random_shuffle/deprecated.cc | 19 ++ .../25_algorithms/random_shuffle/moveable.cc | 1 + libstdc++-v3/testsuite/std/time/clock/system/io.cc | 20 +- libstdc++-v3/testsuite/std/time/clock/utc/io.cc | 12 +- libstdc++-v3/testsuite/std/time/format.cc | 10 + libstdc++-v3/testsuite/std/time/hh_mm_ss/io.cc | 28 +- libstdc++-v3/testsuite/std/time/zoned_time/io.cc | 64 ++++ 22 files changed, 479 insertions(+), 165 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/ratio/requirements/type_constraints.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/110807.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/random_shuffle/deprecated.cc create mode 100644 libstdc++-v3/testsuite/std/time/zoned_time/io.cc