|
| 1 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 2 | + |
| 3 | + * include/bits/stl_iterator_base_types.h (__any_input_iterator): |
| 4 | + Only define when __cpp_lib_concepts is defined. |
| 5 | + |
| 6 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 7 | + |
| 8 | + * doc/xml/manual/appendix_contributing.xml: Remove Paolo from |
| 9 | + list of maintainers to contact about contributing. |
| 10 | + * doc/html/manual/appendix_contributing.html: Regenerate. |
| 11 | + |
| 12 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 13 | + |
| 14 | + * doc/xml/manual/build_hacking.xml: Document that |
| 15 | + windows_zones-map.h is a generated file. |
| 16 | + * doc/html/manual/appendix_porting.html: Regenerate. |
| 17 | + |
| 18 | +2025-07-18 Tomasz Kamiński < [email protected]> |
| 19 | + |
| 20 | + PR libstdc++/119137 |
| 21 | + * include/std/inplace_vector (inplace_vector::operator=): |
| 22 | + Qualify call to std::addressof. |
| 23 | + |
| 24 | +2025-07-18 Tomasz Kamiński < [email protected]> |
| 25 | + |
| 26 | + PR libstdc++/121154 |
| 27 | + * include/bits/chrono_io.h (_ChronoSpec::_M_time_point): Remove. |
| 28 | + (_ChronoSpec::_M_needs_ok_check): Define |
| 29 | + (__formatter_chrono::_M_parse): Set _M_needs_ok_check. |
| 30 | + (__formatter_chrono::_M_check_ok): Check values also for debug mode, |
| 31 | + and return __string_view. |
| 32 | + (__formatter_chrono::_M_format_to): Handle results of _M_check_ok. |
| 33 | + (__formatter_chrono::_M_wi, __formatter_chrono::_M_a_A) |
| 34 | + (__formatter_chrono::_M_b_B, __formatter_chrono::_M_C_y_Y) |
| 35 | + (__formatter_chrono::_M_d_e, __formatter_chrono::_M_F): |
| 36 | + Removed handling of _M_debug. |
| 37 | + (__formatter_chrono::__M_m): Print zero unpadded in _M_debug mode. |
| 38 | + (__formatter_duration::_S_spec_for): Remove _M_time_point refernce. |
| 39 | + (__formatter_duration::_M_parse): Override _M_needs_ok_check. |
| 40 | + * testsuite/std/time/month/io.cc: Test for localized !ok() values. |
| 41 | + * testsuite/std/time/weekday/io.cc: Test for localized !ok() values. |
| 42 | + |
| 43 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 44 | + |
| 45 | + PR libstdc++/121150 |
| 46 | + * testsuite/20_util/hash/int128.cc: Cast expected values to |
| 47 | + size_t. |
| 48 | + |
| 49 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 50 | + |
| 51 | + * include/bits/unicode.h (_Utf_iterator::operator--): Reorder |
| 52 | + conditions and update position after reading a code unit. |
| 53 | + (_Utf_iterator::_M_read_reverse): Define. |
| 54 | + (_Utf_iterator::_M_read_utf8): Return extracted code point. |
| 55 | + (_Utf_iterator::_M_read_reverse_utf8): Define. |
| 56 | + (_Utf_iterator::_M_read_reverse_utf16): Define. |
| 57 | + (_Utf_iterator::_M_read_reverse_utf32): Define. |
| 58 | + * testsuite/ext/unicode/view.cc: Add checks for reversed views |
| 59 | + and reverse iteration. |
| 60 | + |
| 61 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 62 | + |
| 63 | + * include/bits/unicode.h (_Utf_iterator): Reorder data members |
| 64 | + to be more compact. |
| 65 | + |
| 66 | +2025-07-18 Jonathan Wakely < [email protected]> |
| 67 | + Tomasz Kamiński < [email protected]> |
| 68 | + |
| 69 | + PR libstdc++/119137 |
| 70 | + * doc/doxygen/user.cfg.in (INPUT): Add new header. |
| 71 | + * include/Makefile.am: Add new header. |
| 72 | + * include/Makefile.in: Regenerate. |
| 73 | + * include/bits/stl_iterator_base_types.h (__any_input_iterator): |
| 74 | + Define. |
| 75 | + * include/bits/version.def (inplace_vector): Define. |
| 76 | + * include/bits/version.h: Regenerate. |
| 77 | + * include/precompiled/stdc++.h: Include new header. |
| 78 | + * src/c++23/std.cc.in: Export contents if new header. |
| 79 | + * include/std/inplace_vector: New file. |
| 80 | + * testsuite/23_containers/inplace_vector/access/capacity.cc: New file. |
| 81 | + * testsuite/23_containers/inplace_vector/access/elem.cc: New file. |
| 82 | + * testsuite/23_containers/inplace_vector/access/elem_neg.cc: New file. |
| 83 | + * testsuite/23_containers/inplace_vector/cons/1.cc: New file. |
| 84 | + * testsuite/23_containers/inplace_vector/cons/from_range.cc: New file. |
| 85 | + * testsuite/23_containers/inplace_vector/cons/throws.cc: New file. |
| 86 | + * testsuite/23_containers/inplace_vector/copy.cc: New file. |
| 87 | + * testsuite/23_containers/inplace_vector/erasure.cc: New file. |
| 88 | + * testsuite/23_containers/inplace_vector/modifiers/assign.cc: New file. |
| 89 | + * testsuite/23_containers/inplace_vector/modifiers/erase.cc: New file. |
| 90 | + * testsuite/23_containers/inplace_vector/modifiers/multi_insert.cc: |
| 91 | + New file. |
| 92 | + * testsuite/23_containers/inplace_vector/modifiers/single_insert.cc: |
| 93 | + New file. |
| 94 | + * testsuite/23_containers/inplace_vector/move.cc: New file. |
| 95 | + * testsuite/23_containers/inplace_vector/relops.cc: New file. |
| 96 | + * testsuite/23_containers/inplace_vector/version.cc: New file. |
| 97 | + * testsuite/util/testsuite_iterators.h (input_iterator_wrapper::base): |
| 98 | + Define. |
| 99 | + |
1 | 100 | 2025-07-17 Jonathan Wakely < [email protected]>
|
2 | 101 |
|
3 | 102 | PR libstdc++/96710
|
|
0 commit comments