]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/ChangeLog
real: Fix roundeven on inf/nan [PR93663]
[thirdparty/gcc.git] / libstdc++-v3 / ChangeLog
CommitLineData
b32a3f32
FD
12020-02-12 François Dumont <fdumont@gcc.gnu.org>
2
3 * include/bits/hashtable.h
4 (_Hashtable<>(_Hashtable&&, std::allocator_type&)): Add
5 missing std namespace qualification to forward call.
6
dcda050e
JW
72020-02-09 Jonathan Wakely <jwakely@redhat.com>
8
38660e87
JW
9 * testsuite/20_util/function_objects/range.cmp/equal_to.cc: Fix
10 comment.
11 * testsuite/20_util/function_objects/range.cmp/less.ccL Likewise.
12
97a7c229
JW
13 * include/std/ranges: Fix non-ASCII characters in comment.
14
dcda050e
JW
15 * include/bits/range_cmp.h (__detail::__eq_builtin_ptr_cmp): Require
16 equality comparison to be valid and return bool.
17 (__detail::__less_builtin_ptr_cmp): Likewise for less-than comparison.
18 * testsuite/20_util/function_objects/range.cmp/equal_to.cc: Check
19 type with ambiguous conversion to fundamental types.
20 * testsuite/20_util/function_objects/range.cmp/less.cc: Likewise.
21
d222d8ec
JW
222020-02-07 Jonathan Wakely <jwakely@redhat.com>
23
c8dd2446
JW
24 * include/bits/iterator_concepts.h (iter_difference_t, iter_value_t):
25 Use remove_cvref_t.
26 (readable_traits): Rename to indirectly_readable_traits.
27 (readable): Rename to indirectly_readable.
28 (writable): Rename to indirectly_writable.
29 (__detail::__iter_exchange_move): Do not use remove_reference_t.
30 (indirectly_swappable): Adjust requires expression parameter types.
31 expression.
32 * include/bits/ranges_algo.h (ranges::transform, ranges::replace)
33 (ranges::replace_if, ranges::generate_n, ranges::generate)
34 (ranges::remove): Use new name for writable.
35 * include/bits/stl_iterator.h (__detail::__common_iter_has_arrow):
36 Use new name for readable.
37 * include/ext/pointer.h (readable_traits<_Pointer_adapter<P>>): Use
38 new name for readable_traits.
39 * testsuite/24_iterators/associated_types/readable.traits.cc: Likewise.
40 * testsuite/24_iterators/indirect_callable/projected.cc: Adjust for
41 new definition of indirectly_readable.
42
d222d8ec
JW
43 * include/bits/stl_iterator.h (__detail::__common_iter_ptr): Change
44 to take parameters of common_iterator, instead of the common_iterator
45 type itself. Fix argument for __common_iter_has_arrow constraint.
46 (iterator_traits<common_iterator<I, S>>::pointer): Adjust.
47
572992c8
JW
482020-02-07 Jonathan Wakely <jwakely@redhat.com>
49
50 * include/std/ranges (iota_view): Add braces to prevent -Wempty-body
51 warning.
52 (basic_istream_view::_Iterator::operator++()): Add missing return.
53
cba9ef06
PP
542020-02-07 Patrick Palka <ppalka@redhat.com>
55
a04f635d
PP
56 * include/bits/ranges_algo.h: Remove extraneous &&.
57
b7903d9f
PP
58 * include/std/ranges (ranges::__detail::__stream_extractable,
59 ranges::basic_istream_view, ranges::istream_view): Define.
60 * testsuite/std/ranges/istream_view: New test.
61
cba9ef06
PP
62 Implement C++20 range adaptors
63 * include/std/ranges: Include <bits/refwrap.h> and <tuple>.
64 (subrange::_S_store_size): Mark as const instead of constexpr to
65 avoid what seems to be a bug in GCC.
66 (__detail::__box): Give it defaulted copy and move constructors.
55d4cbcb
PP
67 (ranges::views::_Single::operator()): Mark constexpr.
68 (ranges::views::_Iota::operator()): Mark constexpr.
cba9ef06 69 (__detail::Empty): Define.
55d4cbcb
PP
70 (ranges::views::__closure::_RangeAdaptor,
71 ranges::views::__closure::_RangeAdaptorClosure, ref_view, all_view,
72 ranges::views::all, ranges::__detail::find_if,
73 ranges::__detail::find_if_not, ranges::__detail::mismatch,
74 ranges::detail::min, filter_view, ranges::views::filter, transform_view,
75 ranges::views::transform, take_view, ranges::views::take,
76 take_while_view, ranges::views::take_while, drop_view,
77 ranges::views::drop, join_view, ranges::views::join,
cba9ef06 78 __detail::require_constant, __detail::tiny_range, split_view,
55d4cbcb
PP
79 ranges::views::split, ranges::views::_Counted, ranges::views::counted,
80 common_view, ranges::views::common, reverse_view,
81 ranges::views::reverse,
82 ranges::views::__detail::__is_reversible_subrange,
83 ranges::views::__detail::__is_reverse_view, reverse_view,
84 ranges::views::reverse, __detail::__has_tuple_element, elements_view,
85 ranges::views::elements, ranges::views::keys, ranges::views::values):
86 Define.
87 (views): Alias for ranges::views.
88 (tuple_size<ranges::subrange<>>, tuple_element<0, ranges::subrange>,
89 tuple_element<1, ranges::subrange>): New partial specializations.
cba9ef06
PP
90 * testsuite/std/ranges/adaptors/all.cc: New test.
91 * testsuite/std/ranges/adaptors/common.cc: Likewise.
92 * testsuite/std/ranges/adaptors/counted.cc: Likewise.
93 * testsuite/std/ranges/adaptors/drop.cc: Likewise.
94 * testsuite/std/ranges/adaptors/drop_while.cc: Likewise.
95 * testsuite/std/ranges/adaptors/elements.cc: Likewise.
96 * testsuite/std/ranges/adaptors/filter.cc: Likewise.
97 * testsuite/std/ranges/adaptors/join.cc: Likewise.
98 * testsuite/std/ranges/adaptors/reverse.cc: Likewise.
99 * testsuite/std/ranges/adaptors/split.cc: Likewise.
100 * testsuite/std/ranges/adaptors/take.cc: Likewise.
101 * testsuite/std/ranges/adaptors/take_while.cc: Likewise.
102 * testsuite/std/ranges/adaptors/transform.cc: Likewise.
103
5713834e
JW
1042020-02-07 Jonathan Wakely <jwakely@redhat.com>
105
0d57370c
JW
106 * libsupc++/compare (__cmp_cat::type): Define typedef for underlying
107 type of enumerations and comparison category types.
108 (__cmp_cat::_Ord, __cmp_cat::_Ncmp): Add underlying type.
109 (__cmp_cat::_Ncmp::unordered): Change value to 2.
110 (partial_ordering::_M_value, weak_ordering::_M_value)
111 (strong_ordering::_M_value): Change type to __cmp_cat::type.
112 (partial_ordering::_M_is_ordered): Remove data member.
113 (partial_ordering): Use second bit of _M_value for unordered. Adjust
114 comparison operators.
115 (weak_ordering::operator partial_ordering): Simplify to remove
116 branches.
117 (operator<=>(unspecified, weak_ordering)): Likewise.
118 (strong_ordering::operator partial_ordering): Likewise.
119 (strong_ordering::operator weak_ordering): Likewise.
120 (operator<=>(unspecified, strong_ordering)): Likewise.
121 * testsuite/18_support/comparisons/categories/partialord.cc: New test.
122 * testsuite/18_support/comparisons/categories/strongord.cc: New test.
123 * testsuite/18_support/comparisons/categories/weakord.cc: New test.
124
5713834e
JW
125 * include/std/ranges (iota_view::_Iterator): Fix typo in name of
126 __cpp_lib_three_way_comparison macro and use deduced return type for
127 operator<=>.
128 * testsuite/std/ranges/iota/iterator.cc: New test.
129
bc464641
PP
1302020-02-07 Patrick Palka <ppalka@redhat.com>
131 Jonathan Wakely <jwakely@redhat.com>
132
133 Implement C++20 constrained algorithms
134 * include/Makefile.am: Add new header.
135 * include/Makefile.in: Regenerate.
136 * include/std/algorithm: Include <bits/ranges_algo.h>.
137 * include/bits/ranges_algo.h: New file.
138 * testsuite/25_algorithms/adjacent_find/constrained.cc: New test.
139 * testsuite/25_algorithms/all_of/constrained.cc: New test.
140 * testsuite/25_algorithms/any_of/constrained.cc: New test.
141 * testsuite/25_algorithms/binary_search/constrained.cc: New test.
142 * testsuite/25_algorithms/copy/constrained.cc: New test.
143 * testsuite/25_algorithms/copy_backward/constrained.cc: New test.
144 * testsuite/25_algorithms/copy_if/constrained.cc: New test.
145 * testsuite/25_algorithms/copy_n/constrained.cc: New test.
146 * testsuite/25_algorithms/count/constrained.cc: New test.
147 * testsuite/25_algorithms/count_if/constrained.cc: New test.
148 * testsuite/25_algorithms/equal/constrained.cc: New test.
149 * testsuite/25_algorithms/equal_range/constrained.cc: New test.
150 * testsuite/25_algorithms/fill/constrained.cc: New test.
151 * testsuite/25_algorithms/fill_n/constrained.cc: New test.
152 * testsuite/25_algorithms/find/constrained.cc: New test.
153 * testsuite/25_algorithms/find_end/constrained.cc: New test.
154 * testsuite/25_algorithms/find_first_of/constrained.cc: New test.
155 * testsuite/25_algorithms/find_if/constrained.cc: New test.
156 * testsuite/25_algorithms/find_if_not/constrained.cc: New test.
157 * testsuite/25_algorithms/for_each/constrained.cc: New test.
158 * testsuite/25_algorithms/generate/constrained.cc: New test.
159 * testsuite/25_algorithms/generate_n/constrained.cc: New test.
160 * testsuite/25_algorithms/heap/constrained.cc: New test.
161 * testsuite/25_algorithms/includes/constrained.cc: New test.
162 * testsuite/25_algorithms/inplace_merge/constrained.cc: New test.
163 * testsuite/25_algorithms/is_partitioned/constrained.cc: New test.
164 * testsuite/25_algorithms/is_permutation/constrained.cc: New test.
165 * testsuite/25_algorithms/is_sorted/constrained.cc: New test.
166 * testsuite/25_algorithms/is_sorted_until/constrained.cc: New test.
167 * testsuite/25_algorithms/lexicographical_compare/constrained.cc: New
168 test.
169 * testsuite/25_algorithms/lower_bound/constrained.cc: New test.
170 * testsuite/25_algorithms/max/constrained.cc: New test.
171 * testsuite/25_algorithms/max_element/constrained.cc: New test.
172 * testsuite/25_algorithms/merge/constrained.cc: New test.
173 * testsuite/25_algorithms/min/constrained.cc: New test.
174 * testsuite/25_algorithms/min_element/constrained.cc: New test.
175 * testsuite/25_algorithms/minmax/constrained.cc: New test.
176 * testsuite/25_algorithms/minmax_element/constrained.cc: New test.
177 * testsuite/25_algorithms/mismatch/constrained.cc: New test.
178 * testsuite/25_algorithms/move/constrained.cc: New test.
179 * testsuite/25_algorithms/move_backward/constrained.cc: New test.
180 * testsuite/25_algorithms/next_permutation/constrained.cc: New test.
181 * testsuite/25_algorithms/none_of/constrained.cc: New test.
182 * testsuite/25_algorithms/nth_element/constrained.cc: New test.
183 * testsuite/25_algorithms/partial_sort/constrained.cc: New test.
184 * testsuite/25_algorithms/partial_sort_copy/constrained.cc: New test.
185 * testsuite/25_algorithms/partition/constrained.cc: New test.
186 * testsuite/25_algorithms/partition_copy/constrained.cc: New test.
187 * testsuite/25_algorithms/partition_point/constrained.cc: New test.
188 * testsuite/25_algorithms/prev_permutation/constrained.cc: New test.
189 * testsuite/25_algorithms/remove/constrained.cc: New test.
190 * testsuite/25_algorithms/remove_copy/constrained.cc: New test.
191 * testsuite/25_algorithms/remove_copy_if/constrained.cc: New test.
192 * testsuite/25_algorithms/remove_if/constrained.cc: New test.
193 * testsuite/25_algorithms/replace/constrained.cc: New test.
194 * testsuite/25_algorithms/replace_copy/constrained.cc: New test.
195 * testsuite/25_algorithms/replace_copy_if/constrained.cc: New test.
196 * testsuite/25_algorithms/replace_if/constrained.cc: New test.
197 * testsuite/25_algorithms/reverse/constrained.cc: New test.
198 * testsuite/25_algorithms/reverse_copy/constrained.cc: New test.
199 * testsuite/25_algorithms/rotate/constrained.cc: New test.
200 * testsuite/25_algorithms/rotate_copy/constrained.cc: New test.
201 * testsuite/25_algorithms/search/constrained.cc: New test.
202 * testsuite/25_algorithms/search_n/constrained.cc: New test.
203 * testsuite/25_algorithms/set_difference/constrained.cc: New test.
204 * testsuite/25_algorithms/set_intersection/constrained.cc: New test.
205 * testsuite/25_algorithms/set_symmetric_difference/constrained.cc: New
206 test.
207 * testsuite/25_algorithms/set_union/constrained.cc: New test.
208 * testsuite/25_algorithms/shuffle/constrained.cc: New test.
209 * testsuite/25_algorithms/sort/constrained.cc: New test.
210 * testsuite/25_algorithms/stable_partition/constrained.cc: New test.
211 * testsuite/25_algorithms/stable_sort/constrained.cc: New test.
212 * testsuite/25_algorithms/swap_ranges/constrained.cc: New test.
213 * testsuite/25_algorithms/transform/constrained.cc: New test.
214 * testsuite/25_algorithms/unique/constrained.cc: New test.
215 * testsuite/25_algorithms/unique_copy/constrained.cc: New test.
216 * testsuite/25_algorithms/upper_bound/constrained.cc: New test.
217
d1aa7705
JW
2182020-02-06 Jonathan Wakely <jwakely@redhat.com>
219
bd630df0
JW
220 * include/bits/stl_iterator.h (__detail::__common_iter_ptr): Fix PR
221 number in comment. Fix indentation.
222
d1aa7705
JW
223 * include/bits/stl_algobase.h (__iter_swap, __iter_swap<true>): Remove
224 redundant _GLIBCXX20_CONSTEXPR.
225
26eae9ac
JW
226 * include/std/ranges (viewable_range): Replace decay_t with
227 remove_cvref_t (LWG 3375).
228
269e8130
JW
2292020-02-05 Jonathan Wakely <jwakely@redhat.com>
230
231 * include/bits/iterator_concepts.h (iter_reference_t)
232 (iter_rvalue_reference_t, iter_common_reference_t, indirect_result_t):
233 Remove workarounds for PR c++/67704.
234 * testsuite/24_iterators/aliases.cc: New test.
235
7db12d15
PP
2362020-02-05 Patrick Palka <ppalka@redhat.com>
237
238 * include/bits/stl_iterator.h (move_iterator::move_iterator): Move __i
239 when initializing _M_current.
240 (move_iterator::base): Split into two overloads differing in
241 ref-qualifiers as in P1207R4 for C++20.
242
9962493c
JW
2432020-02-04 Jonathan Wakely <jwakely@redhat.com>
244
9bc5bea1
JW
245 * include/std/functional (_GLIBCXX_NOT_FN_CALL_OP): Un-define after
246 use.
247
9962493c
JW
248 PR libstdc++/93562
249 * include/bits/unique_ptr.h (__uniq_ptr_impl::swap): Define.
250 (unique_ptr::swap, unique_ptr<T[], D>::swap): Call it.
251 * testsuite/20_util/unique_ptr/modifiers/93562.cc: New test.
252
20fa702b
AB
2532020-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
254
255 * configure: Regenerate.
256
6e5a1963
PP
2572020-01-31 Patrick Palka <ppalka@redhat.com>
258
259 * testsuite/24_iterators/range_operations/distance.cc: Do not assume
260 test_range::end() returns the same type as test_range::begin().
261 * testsuite/24_iterators/range_operations/next.cc: Likewise.
262 * testsuite/24_iterators/range_operations/prev.cc: Likewise.
263 * testsuite/util/testsuite_iterators.h (__gnu_test::test_range::end):
264 Always return a sentinel<I>.
265
5cd2e126
JW
2662020-01-29 Jonathan Wakely <jwakely@redhat.com>
267
0a8f4feb
JW
268 PR libstdc++/92895
269 * include/std/stop_token (stop_token::stop_possible()): Call new
270 _M_stop_possible() function.
271 (stop_token::stop_requested()): Do not use stop_possible().
272 (stop_token::binary_semaphore): New class, as temporary stand-in for
273 std::binary_semaphore.
274 (stop_token::_Stop_cb::_M_callback): Add noexcept to type.
275 (stop_token::_Stop_cb::_M_destroyed, stop_token::_Stop_cb::_M_done):
276 New data members for symchronization with stop_callback destruction.
277 (stop_token::_Stop_cb::_Stop_cb): Make non-template.
278 (stop_token::_Stop_cb::_M_linked, stop_token::_Stop_cb::_S_execute):
279 Remove.
280 (stop_token::_Stop_cb::_M_run): New member function.
281 (stop_token::_Stop_state::_M_stopped, stop_token::_Stop_state::_M_mtx):
282 Remove.
283 (stop_token::_Stop_state::_M_owners): New data member to track
284 reference count for ownership.
285 (stop_token::_Stop_state::_M_value): New data member combining a
286 spinlock, the stop requested flag, and the reference count for
287 associated stop_source objects.
288 (stop_token::_Stop_state::_M_requester): New data member for
289 synchronization with stop_callback destruction.
290 (stop_token::_Stop_state::_M_stop_possible()): New member function.
291 (stop_token::_Stop_state::_M_stop_requested()): Inspect relevant bit
292 of _M_value.
293 (stop_token::_Stop_state::_M_add_owner)
294 (stop_token::_Stop_state::_M_release_ownership)
295 (stop_token::_Stop_state::_M_add_ssrc)
296 (stop_token::_Stop_state::_M_sub_ssrc): New member functions for
297 updating reference counts.
298 (stop_token::_Stop_state::_M_lock, stop_token::_Stop_state::_M_unlock)
299 (stop_token::_Stop_state::_M_lock, stop_token::_Stop_state::_M_unlock)
300 (stop_token::_Stop_state::_M_try_lock)
301 (stop_token::_Stop_state::_M_try_lock_and_stop)
302 (stop_token::_Stop_state::_M_do_try_lock): New member functions for
303 managing spinlock.
304 (stop_token::_Stop_state::_M_request_stop): Use atomic operations to
305 read and update state. Release lock while running callbacks. Use new
306 data members to synchronize with callback destruction.
307 (stop_token::_Stop_state::_M_remove_callback): Likewise.
308 (stop_token::_Stop_state::_M_register_callback): Use atomic operations
309 to read and update state.
310 (stop_token::_Stop_state_ref): Handle type to manage _Stop_state,
311 replacing shared_ptr.
312 (stop_source::stop_source(const stop_source&)): Update reference count.
313 (stop_source::operator=(const stop_source&)): Likewise.
314 (stop_source::~stop_source()): Likewise.
315 (stop_source::stop_source(stop_source&&)): Define as defaulted.
316 (stop_source::operator=(stop_source&&)): Establish postcondition on
317 parameter.
318 (stop_callback): Enforce preconditions on template parameter. Replace
319 base class with data member of new _Cb_impl type.
320 (stop_callback::stop_callback(const stop_token&, Cb&&))
321 (stop_callback::stop_callback(stop_token&&, Cb&&)): Fix TOCTTOU race.
322 (stop_callback::_Cb_impl): New type wrapping _Callback member and
323 defining the _S_execute member function.
324 * testsuite/30_threads/stop_token/stop_callback/deadlock-mt.cc: New
325 test.
326 * testsuite/30_threads/stop_token/stop_callback/deadlock.cc: New test.
327 * testsuite/30_threads/stop_token/stop_callback/destroy.cc: New test.
328 * testsuite/30_threads/stop_token/stop_callback/destructible_neg.cc:
329 New test.
330 * testsuite/30_threads/stop_token/stop_callback/invocable_neg.cc: New
331 test.
332 * testsuite/30_threads/stop_token/stop_callback/invoke.cc: New test.
333 * testsuite/30_threads/stop_token/stop_source/assign.cc: New test.
334 * testsuite/30_threads/stop_token/stop_token/stop_possible.cc: New
335 test.
336
f214ffb3
JW
337 * libsupc++/compare (__detail::__3way_builtin_ptr_cmp): Use
338 three_way_comparable_with.
339 (__detail::__3way_cmp_with): Remove workaround for fixed bug.
340 (compare_three_way::operator()): Remove redundant constraint from
341 requires-clause.
342 (__detail::_Synth3way::operator()): Use three_way_comparable_with
343 instead of workaround.
344 * testsuite/18_support/comparisons/object/93479.cc: Prune extra
345 output due to simplified constraints on compare_three_way::operator().
346
83b02010
JW
347 PR libstdc++/93479
348 * libsupc++/compare (__3way_builtin_ptr_cmp): Require <=> to be valid.
349 * testsuite/18_support/comparisons/object/93479.cc: New test.
350
5cd2e126
JW
351 * testsuite/std/ranges/access/end.cc: Do not assume test_range::end()
352 returns the same type as test_range::begin(). Add comments.
353 * testsuite/std/ranges/access/rbegin.cc: Likewise.
354 * testsuite/std/ranges/access/rend.cc: Likewise.
355 * testsuite/std/ranges/range.cc: Do not assume the sentinel for
356 test_range is the same as its iterator type.
357 * testsuite/util/testsuite_iterators.h (test_range::sentinel): Add
358 operator- overloads to satisfy sized_sentinel_for when the iterator
359 satisfies random_access_iterator.
360
759812fd
JW
3612020-01-28 Jonathan Wakely <jwakely@redhat.com>
362
72a9fd20
JW
363 PR libstdc++/93470
364 * include/bits/refwrap.h (reference_wrapper::operator()): Restrict
365 static assertion to object types.
366
759812fd
JW
367 PR libstdc++/93325
368 * acinclude.m4 (GLIBCXX_ENABLE_LIBSTDCXX_TIME): Use AC_SEARCH_LIBS for
369 clock_gettime instead of explicit glibc version check.
370 * configure: Regenerate.
371
a5d81aaa
JW
3722020-01-28 Martin Liska <mliska@suse.cz>
373
374 PR libstdc++/93478
375 * include/std/atomic: Fix typo.
376 * include/std/optional: Likewise.
377
3782020-01-27 Andrew Burgess <andrew.burgess@embecosm.com>
379
380 * configure: Regenerate.
381
389cd88c
JW
3822020-01-27 Jonathan Wakely <jwakely@redhat.com>
383
384 PR libstdc++/93426
385 * include/std/span (span): Fix deduction guide.
386 * testsuite/23_containers/span/deduction.cc: New test.
387
482eeff5
JW
3882020-01-24 Jonathan Wakely <jwakely@redhat.com>
389
390 * libsupc++/compare (__cmp_cat::_Eq): Remove enumeration type.
391 (__cmp_cat::_Ord::equivalent): Add enumerator.
392 (__cmp_cat::_Ord::_Less, __cmp_cat::_Ord::_Greater): Rename to less
393 and greater.
394 (partial_ordering, weak_ordering, strong_ordering): Remove
395 constructors taking __cmp_cat::_Eq parameters. Use renamed
396 enumerators.
397
e8e66971
MR
3982020-01-24 Maciej W. Rozycki <macro@wdc.com>
399
400 * acinclude.m4: Handle `--with-toolexeclibdir='.
401 * Makefile.in: Regenerate.
402 * aclocal.m4: Regenerate.
403 * configure: Regenerate.
404 * doc/Makefile.in: Regenerate.
405 * include/Makefile.in: Regenerate.
406 * libsupc++/Makefile.in: Regenerate.
407 * po/Makefile.in: Regenerate.
408 * python/Makefile.in: Regenerate.
409 * src/Makefile.in: Regenerate.
410 * src/c++11/Makefile.in: Regenerate.
411 * src/c++17/Makefile.in: Regenerate.
412 * src/c++98/Makefile.in: Regenerate.
413 * src/filesystem/Makefile.in: Regenerate.
414 * testsuite/Makefile.in: Regenerate.
415
7a900bce
AO
4162020-01-23 Alexandre Oliva <oliva@adacore.com>
417
f9e84b31
AO
418 * crossconfig.m4 (GLIBCXX_CHECK_MATH_DECL): Reject macros.
419 * configure: Rebuild.
420
7a900bce
AO
421 * testsuite/27_io/fpos/mbstate_t/1.cc: Zero-init mbstate_t.
422
04681fca
JW
4232020-01-23 Jonathan Wakely <jwakely@redhat.com>
424
425 PR libstdc++/91947
426 * include/Makefile.am (${host_builddir}/largefile-config.h): Simplify
427 rule.
428 * include/Makefile.in: Regenerate.
429
c784f162
JW
4302020-01-20 Jonathan Wakely <jwakely@redhat.com>
431
432 * doc/xml/faq.xml: Fix grammar.
433 * doc/xml/manual/appendix_contributing.xml: Improve instructions.
434 * doc/xml/manual/spine.xml: Update copyright years.
435 * doc/html/*: Regenerate.
436
f4d83eba
ER
4372020-01-19 Eric S. Raymond <esr@thyrsus.com>
438
439 * doc/xml/faq.xml: Update for SVN -> Git transition.
440 * doc/xml/manual/appendix_contributing.xml: Likewise.
441 * doc/xml/manual/status_cxx1998.xml: Likewise.
442 * doc/xml/manual/status_cxx2011.xml: Likewise.
443 * doc/xml/manual/status_cxx2014.xml: Likewise.
444 * doc/xml/manual/status_cxx2017.xml: Likewise.
445 * doc/xml/manual/status_cxx2020.xml: Likewise.
446 * doc/xml/manual/status_cxxtr1.xml: Likewise.
447 * doc/xml/manual/status_cxxtr24733.xml: Likewise.
448
49789fd0
IS
4492020-01-18 Iain Sandoe <iain@sandoe.co.uk>
450
451 * include/Makefile.am: Add coroutine to the std set.
452 * include/Makefile.in: Regenerated.
453 * include/std/coroutine: New file.
454
0ba6a850
JW
4552020-01-17 Jonathan Wakely <jwakely@redhat.com>
456
457 PR libstdc++/92376
458 * include/bits/c++config: Only do PSTL config when the header is
459 present, to fix freestanding.
460 * libsupc++/new_opa.cc [!_GLIBCXX_HOSTED]: Declare allocation
461 functions if they were detected by configure.
462
98d56ea8
JW
4632020-01-16 Kai-Uwe Eckhardt <kuehro@gmx.de>
464 Matthew Bauer <mjbauer95@gmail.com>
465 Jonathan Wakely <jwakely@redhat.com>
466
467 PR bootstrap/64271 (partial)
468 * config/os/bsd/netbsd/ctype_base.h (ctype_base::mask): Change type
469 to unsigned short.
470 (ctype_base::alpha, ctype_base::digit, ctype_base::xdigit)
471 (ctype_base::print, ctype_base::graph, ctype_base::alnum): Sync
472 definitions with NetBSD upstream.
473 (ctype_base::blank): Use _CTYPE_BL.
474 * config/os/bsd/netbsd/ctype_configure_char.cc (_C_ctype_): Remove
475 Declaration.
476 (ctype<char>::classic_table): Use _C_ctype_tab_ instead of _C_ctype_.
477 (ctype<char>::do_toupper, ctype<char>::do_tolower): Cast char
478 parameters to unsigned char.
479 * config/os/bsd/netbsd/ctype_inline.h (ctype<char>::is): Likewise.
480
d9165389
FD
4812020-01-16 François Dumont <fdumont@gcc.gnu.org>
482
483 PR libstdc++/91263
484 * include/bits/hashtable.h (_Hashtable<>): Make _Equality<> friend.
485 * include/bits/hashtable_policy.h: Include <bits/stl_algo.h>.
486 (_Equality_base): Remove.
487 (_Equality<>::_M_equal): Review implementation. Use
488 std::is_permutation.
489 * testsuite/23_containers/unordered_multiset/operators/1.cc
490 (Hash, Equal, test02, test03): New.
491 * testsuite/23_containers/unordered_set/operators/1.cc
492 (Hash, Equal, test02, test03): New.
493
2a0f6c61
JW
4942020-01-15 Jonathan Wakely <jwakely@redhat.com>
495
496 PR libstdc++/93267
497 * include/bits/iterator_concepts.h (__max_diff_type, __max_size_type):
498 Move here from <bits/range_access.h> and define using __int128 when
499 available.
500 (__is_integer_like, __is_signed_integer_like): Move here from
501 <bits/range_access.h>.
502 (weakly_incrementable): Use __is_signed_integer_like.
503 * include/bits/range_access.h (__max_diff_type, __max_size_type)
504 (__is_integer_like, __is_signed_integer_like): Move to
505 <bits/iterator_concepts.h>.
506 (__make_unsigned_like_t): Move here from <ranges>.
507 * include/std/ranges (__make_unsigned_like_t): Move to
508 <bits/range_access.h>.
509 (iota_view): Replace using-directive with using-declarations.
510 * testsuite/std/ranges/iota/93267.cc: New test.
511 * testsuite/std/ranges/iota_view.cc: Move to new 'iota' sub-directory.
512
e4379a93
JW
5132020-01-13 Jonathan Wakely <jwakely@redhat.com>
514
fe7cc34f
JW
515 PR libstdc++/93244
516 * include/bits/fs_path.h (path::generic_string<C,A>)
517 [_GLIBCXX_FILESYSTEM_IS_WINDOWS]: Convert root-dir to forward-slash.
518 * testsuite/27_io/filesystem/path/generic/generic_string.cc: Check
519 root-dir is converted to forward slash in generic pathname.
520 * testsuite/27_io/filesystem/path/generic/utf.cc: New test.
521 * testsuite/27_io/filesystem/path/generic/wchar_t.cc: New test.
522
e4379a93
JW
523 PR libstdc++/58605
524 * include/bits/atomic_base.h (__cpp_lib_atomic_value_initialization):
525 Define.
526 (__atomic_flag_base, __atomic_base, __atomic_base<_PTp*>)
527 (__atomic_float): Add default member initializer for C++20.
528 * include/std/atomic (atomic): Likewise.
529 (atomic::atomic()): Remove noexcept-specifier on default constructor.
530 * include/std/version (__cpp_lib_atomic_value_initialization): Define.
531 * testsuite/29_atomics/atomic/cons/assign_neg.cc: Adjust dg-error line
532 number.
533 * testsuite/29_atomics/atomic/cons/copy_neg.cc: Likewise.
534 * testsuite/29_atomics/atomic/cons/value_init.cc: New test.
535 * testsuite/29_atomics/atomic_flag/cons/value_init.cc: New test.
536 * testsuite/29_atomics/atomic_flag/requirements/trivial.cc: Adjust
537 expected result for is_trivially_default_constructible.
538 * testsuite/29_atomics/atomic_float/requirements.cc: Likewise.
539 * testsuite/29_atomics/atomic_float/value_init.cc: New test.
540 * testsuite/29_atomics/atomic_integral/cons/assign_neg.cc: Likewise.
541 * testsuite/29_atomics/atomic_integral/cons/copy_neg.cc: Likewise.
542 * testsuite/29_atomics/atomic_integral/cons/value_init.cc
543 * testsuite/29_atomics/atomic_integral/requirements/trivial.cc: Adjust
544 expected results for is_trivially_default_constructible.
545 * testsuite/util/testsuite_common_types.h (has_trivial_dtor): Add
546 new test generator.
547
7918cb93
JW
5482020-01-10 Jonathan Wakely <jwakely@redhat.com>
549
68be73fc
JW
550 * testsuite/util/testsuite_iterators.h: Improve comment.
551
78f02e80
JW
552 * testsuite/25_algorithms/equal/deque_iterators/1.cc: Don't use C++11
553 initialization syntax.
554
7918cb93
JW
555 PR libstdc++/92285
556 * include/bits/streambuf_iterator.h (istreambuf_iterator): Make type
557 of base class independent of __cplusplus value.
558 [__cplusplus < 201103L] (istreambuf_iterator::reference): Override the
559 type defined in the base class
560 * testsuite/24_iterators/istreambuf_iterator/92285.cc: New test.
561 * testsuite/24_iterators/istreambuf_iterator/requirements/
562 base_classes.cc: Adjust expected base class for C++98.
563
acd43917
OH
5642020-01-09 Olivier Hainque <hainque@adacore.com>
565
566 * doc/xml/manual/appendix_contributing.xml: Document _C2
567 as a reserved identifier, by VxWorks.
568 * include/bits/stl_map.h: Rename _C2 template typenames as _Cmp2.
569 * include/bits/stl_multimap.h: Likewise.
570
caa39b2e
JW
5712020-01-09 Jonathan Wakely <jwakely@redhat.com>
572
1a788638
JW
573 * include/ext/extptr_allocator.h (_ExtPtr_allocator::operator==)
574 (_ExtPtr_allocator::operator!=): Add missing const qualifiers.
575 * include/ext/pointer.h (readable_traits<_Pointer_adapter<S>>): Add
576 partial specialization to disambiguate the two constrained
577 specializations.
578
caa39b2e
JW
579 * include/experimental/type_traits (experimental::is_pod_v): Disable
580 -Wdeprecated-declarations warnings around reference to std::is_pod.
581 * include/std/type_traits (is_pod_v): Likewise.
582 * testsuite/18_support/max_align_t/requirements/2.cc: Also check
583 is_standard_layout and is_trivial. Do not check is_pod for C++20.
584 * testsuite/20_util/is_pod/requirements/explicit_instantiation.cc:
585 Add -Wno-deprecated for C++20.
586 * testsuite/20_util/is_pod/requirements/typedefs.cc: Likewise.
587 * testsuite/20_util/is_pod/value.cc: Likewise.
588 * testsuite/experimental/type_traits/value.cc: Likewise.
589
1a6c5064
JTM
5902020-01-09 JeanHeyd "ThePhD" Meneide <phdofthehouse@gmail.com>
591
592 * include/bits/c++config (_GLIBCXX20_DEPRECATED): Add new macro.
593 * include/std/type_traits (is_pod, is_pod_v): Deprecate for C++20.
594 * testuite/20_util/is_pod/deprecated-2a.cc: New test.
595
d574c8aa
JW
5962020-01-09 Jonathan Wakely <jwakely@redhat.com>
597
160e95dc
JW
598 PR libstdc++/93205
599 * include/bits/random.h (operator>>): Check stream operation succeeds.
600 * include/bits/random.tcc (operator<<): Remove redundant __ostream_type
601 typedefs.
602 (operator>>): Remove redundant __istream_type typedefs. Check stream
603 operations succeed.
604 (__extract_params): New function to fill a vector from a stream.
605 * testsuite/26_numerics/random/pr60037-neg.cc: Adjust dg-error line.
606
d574c8aa
JW
607 PR libstdc++/93208
608 * config/abi/pre/gnu.ver: Add new exports.
609 * include/std/memory_resource (memory_resource::~memory_resource()):
610 Do not define inline.
611 (monotonic_buffer_resource::~monotonic_buffer_resource()): Likewise.
612 * src/c++17/memory_resource.cc (memory_resource::~memory_resource()):
613 Define.
614 (monotonic_buffer_resource::~monotonic_buffer_resource()): Define.
615 * testsuite/20_util/monotonic_buffer_resource/93208.cc: New test.
616
b9c84e95
FD
6172020-01-09 François Dumont <fdumont@gcc.gnu.org>
618
619 PR libstdc++/92124
620 * include/bits/hashtable.h (_Hashtable<>::__alloc_node_gen_t): New
621 template alias.
622 (_Hashtable<>::__fwd_value_for): New.
623 (_Hashtable<>::_M_assign_elements<>): Remove _NodeGenerator template
624 parameter.
625 (_Hashtable<>::_M_assign<>): Add _Ht template parameter.
626 (_Hashtable<>::operator=(const _Hashtable<>&)): Adapt.
627 (_Hashtable<>::_M_move_assign): Adapt. Replace std::move_if_noexcept
628 with std::move.
629 (_Hashtable<>::_Hashtable(const _Hashtable&)): Adapt.
630 (_Hashtable<>::_Hashtable(const _Hashtable&, const allocator_type&)):
631 Adapt.
632 (_Hashtable<>::_Hashtable(_Hashtable&&, const allocator_type&)):
633 Adapt.
634 * testsuite/23_containers/unordered_set/92124.cc: New.
635
fff148b7
JW
6362020-01-08 Jonathan Wakely <jwakely@redhat.com>
637
638 PR libstdc++/93201
639 * src/c++17/fs_ops.cc (do_remove_all): New function implementing more
640 detailed error reporting for remove_all. Check result of recursive
641 call before incrementing iterator.
642 (remove_all(const path&), remove_all(const path&, error_code&)): Use
643 do_remove_all.
644 * src/filesystem/ops.cc (remove_all(const path&, error_code&)): Check
645 result of recursive call before incrementing iterator.
646 * testsuite/27_io/filesystem/operations/remove_all.cc: Check errors
647 are reported correctly.
648 * testsuite/experimental/filesystem/operations/remove_all.cc: Likewise.
649
9e3c1eb7
TR
6502020-01-07 Thomas Rodgers <trodgers@redhat.com>
651
652 * include/std/condition_variable
653 (condition_variable_any::wait_on): Rename to match current draft
654 standard.
655 (condition_variable_any::wait_on_until): Likewise.
656 (condition_variable_any::wait_on_for): Likewise.
657 * testsuite/30_threads/condition_variable_any/stop_token/wait_on.cc:
658 Adjust tests to account for renamed methods.
659
6af8819b
FD
6602020-01-07 François Dumont <fdumont@gcc.gnu.org>
661
662 PR libstdc++/92124
663 * include/bits/stl_tree.h
664 (_Rb_tree<>::_M_move_assign(_Rb_tree&, false_type)): Replace
665 std::move_if_noexcept by std::move.
666 * testsuite/23_containers/map/92124.cc: New.
667 * testsuite/23_containers/set/92124.cc: New.
668
f31a99f7
JW
6692020-01-06 Jonathan Wakely <jwakely@redhat.com>
670
a4a1f965
JW
671 * include/std/stop_token (stop_token): Remove operator!= (LWG 3254).
672 (stop_source): Likewise (LWG 3362).
673 * testsuite/30_threads/stop_token/stop_source.cc: Test equality
674 comparisons.
675
f31a99f7
JW
676 * include/bits/stl_algobase.h (__is_byte_iter, __min_cmp)
677 (lexicographical_compare_three_way): Do not depend on
678 __cpp_lib_concepts.
679 * include/std/version (__cpp_lib_three_way_comparison): Only define
680 when __cpp_lib_concepts is defined.
681 * libsupc++/compare (__cpp_lib_three_way_comparison): Likewise.
682
b4e70137
JW
6832020-01-03 Jonathan Wakely <jwakely@redhat.com>
684
685 * include/bits/stl_algobase.h (lexicographical_compare_three_way):
686 Only define four-argument overload when __cpp_lib_concepts is defined.
687
a8497ec6
JDA
6882020-01-01 John David Anglin <danglin@gcc.gnu.org>
689
690 * config/abi/post/hppa-linux-gnu/baseline_symbols.txt: Update.
691
8d9254fc 6922020-01-01 Jakub Jelinek <jakub@redhat.com>
5624e564
JJ
693
694 Update copyright years.
b4df5e92 695\f
8d9254fc 696Copyright (C) 2020 Free Software Foundation, Inc.
b4df5e92
JW
697
698Copying and distribution of this file, with or without modification,
699are permitted in any medium without royalty provided the copyright
700notice and this notice are preserved.