]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/ChangeLog
Fix broken type comparison assert
[thirdparty/gcc.git] / libstdc++-v3 / ChangeLog
CommitLineData
eb8e6a30
JW
12020-02-27 Jonathan Wakely <jwakely@redhat.com>
2
e94f2542
JW
3 * testsuite/util/testsuite_iterators.h (forward_iterator_wrapper): Add
4 equality comparisons that support value-initialized iterators.
5
eb8e6a30
JW
6 * include/bits/boost_concept_check.h (__function_requires): Add
7 _GLIBCXX14_CONSTEXPR.
8 * testsuite/25_algorithms/min/concept_checks.cc: New test.
9
fd335985
PP
102020-02-26 Patrick Palka <ppalka@redhat.com>
11
8ce13842
PP
12 PR libstdc++/93936
13 * include/std/ranges (split_view::_InnerIter::operator==): Compare
14 the operands' _M_i rather than their _M_i.current().
15 * testsuite/std/ranges/adaptors/split.cc: Augment test.
16
fd335985
PP
17 P1645R1 constexpr for <numeric> algorithms
18 * include/bits/stl_numeric.h (iota, accumulate, inner_product,
19 partial_sum, adjacent_difference): Make conditionally constexpr for
20 C++20.
21 * include/std/numeric (__cpp_lib_constexpr_numeric): Define this feature
22 test macro.
23 (reduce, transform_reduce, exclusive_scan, inclusive_scan,
24 transform_exclusive_scan, transform_inclusive_scan): Make conditionally
25 constexpr for C++20.
26 * include/std/version (__cpp_lib_constexpr_numeric): Define.
27 * testsuite/26_numerics/accumulate/constexpr.cc: New test.
28 * testsuite/26_numerics/adjacent_difference/constexpr.cc: Likewise.
29 * testsuite/26_numerics/exclusive_scan/constexpr.cc: Likewise.
30 * testsuite/26_numerics/inclusive_scan/constexpr.cc: Likewise.
31 * testsuite/26_numerics/inner_product/constexpr.cc: Likewise.
32 * testsuite/26_numerics/iota/constexpr.cc: Likewise.
33 * testsuite/26_numerics/partial_sum/constexpr.cc: Likewise.
34 * testsuite/26_numerics/reduce/constexpr.cc: Likewise.
35 * testsuite/26_numerics/transform_exclusive_scan/constexpr.cc: Likewise.
36 * testsuite/26_numerics/transform_inclusive_scan/constexpr.cc: Likewise.
37 * testsuite/26_numerics/transform_reduce/constexpr.cc: Likewise.
38
8017d95c
JW
392020-02-26 Jonathan Wakely <jwakely@redhat.com>
40
113f0a63
JW
41 * include/bits/ranges_algo.h (__lexicographical_compare_fn): Declare
42 variables in smaller scope and avoid calling ranges::distance when we
43 know they are pointers. Remove statically-unreachable use of
44 __builtin_unreachable().
45 * include/bits/stl_algobase.h (__lexicographical_compare::__lc):
46 Define inline.
47
8017d95c
JW
48 * include/std/ranges (__detail::__maybe_empty_t): Define new helper
49 alias.
50 (__detail::__maybe_const_t): Likewise.
51 (__adaptor::_RangeAdaptor): Use __maybe_empty_t.
52 (transform_view, take_view, take_while_view, elements_view): Use
53 __maybe_const_t.
54 (join_view, split_view): Use both.
55
7f0f1083
PP
562020-02-25 Patrick Palka <ppalka@redhat.com>
57
76a8c0f6
PP
58 LWG 3397 basic_istream_view::iterator should not provide
59 iterator_category
60 * include/std/ranges (basic_istream_view:_Iterator::iterator_category):
61 Rename to ...
62 (basic_istream_view:_Iterator::iterator_concept): ... this.
63 * testsuite/std/ranges/istream_view.cc: Augment test.
64
ec15da7c
PP
65 LWG 3325 Constrain return type of transformation function for
66 transform_view
67 * include/std/ranges (transform_view): Constrain the return type of the
68 transformation function as per LWG 3325.
69 * testsuite/std/ranges/adaptors/lwg3325_neg.cc: New test.
70
55c4b3f4
PP
71 LWG 3313 join_view::_Iterator::operator-- is incorrectly constrained
72 * include/std/ranges (join_view::_Iterator::operator--): Require that
73 range_reference_t<_Base> models common_range.
74 * testsuite/std/ranges/adaptors/lwg3313_neg.cc: New test.
75
510bd1c1
PP
76 LWG 3301 transform_view::_Iterator has incorrect iterator_category
77 * include/std/ranges (transform_view::_Iterator::_S_iter_cat): Adjust
78 determination of iterator_category as per LWG 3301.
79 * testsuite/std/ranges/adaptors/transform.cc: Augment test.
80
7f0f1083
PP
81 LWG 3292 iota_view is under-constrained
82 * include/std/ranges (iota_view): Require that _Winc models semiregular
83 as per LWG 3292.
84 * testsuite/std/ranges/iota/lwg3292_neg.cc: New test.
85
dfb93d05 862020-02-25 Jonathan Wakely <jwakely@redhat.com>
5b904f17 87
490350a1
JW
88 * include/bits/ranges_algobase.h (__copy_or_move): Do not use memmove
89 during constant evaluation. Call __builtin_memmove directly instead of
90 __memmove.
91 (__copy_or_move_backward): Likewise.
92 * include/bits/stl_algobase.h (__memmove): Remove.
93 (__copy_move<M, true, random_access_iterator_tag>::__copy_m)
94 (__copy_move_backward<M, true, random_access_iterator_tag>::__copy_m):
95 Use __builtin_memmove directly instead of __memmove.
96 (__copy_move_a2): Do not use memmove during constant evaluation.
97 (__copy_move_backward_a2): Use _IsMove constant to select correct
98 __copy_move_backward specialization.
99 * testsuite/25_algorithms/copy_backward/constexpr.cc: Check for copies
100 begin turned into moves during constant evaluation.
101
6de946e6
JW
102 * testsuite/25_algorithms/move_backward/93872.cc: Add test left out of
103 previous commit.
104
5b904f17
JW
105 PR libstdc++/93872
106 * include/bits/stl_algobase.h (__memmove): Cast away const before
107 doing move assignment.
108 * testsuite/25_algorithms/move/93872.cc: New test.
109 * testsuite/25_algorithms/move_backward/93872.cc: New test.
110
c5eab4ed
PP
1112020-02-24 Patrick Palka <ppalka@redhat.com>
112
85c143d0
PP
113 PR libstdc++/93884
114 * include/bits/ranges_algobase.h (__copy_or_move,
115 __copy_or_move_backward): Don't inspect the iter_value_t of the output
116 iterator, instead inspect its iterator_traits directly.
117 * include/bits/stl_iterator.h (back_insert_iterator::container):
118 Conditionally initialize.
119 (back_insert_iterator::difference_type): Conditionally define.
120 (back_insert_iterator::back_insert_iterator): Conditionally define this
121 default constructor.
122 (front_insert_iterator::container): Conditionally initialize.
123 (front_insert_iterator::difference_type): Conditionally define.
124 (front_insert_iterator::front_insert_iterator): Conditionally define
125 this default constructor.
126 * 24_iterators/back_insert_iterator/pr93884.cc: New test.
127 * 24_iterators/front_insert_iterator/pr93884.cc: New test.
128
c5eab4ed
PP
129 P0769R2 Add shift to <algorithm>
130 * include/bits/ranges_algo.h (shift_left, shift_right): New.
131 * testsuite/25_algorithms/shift_left/1.cc: New test.
132 * testsuite/25_algorithms/shift_right/1.cc: New test.
133
3841739c
JW
1342020-02-24 Jonathan Wakely <jwakely@redhat.com>
135
8566286e
JW
136 * include/bits/stream_iterator.h (istream_iterator(default_sentinel_t)):
137 Make noexcept-specifier conditional.
138 * testsuite/24_iterators/istream_iterator/cons/sentinel.cc: Check
139 noexcept-specifier.
140
120e8734
JW
141 * include/bits/stream_iterator.h (istream_iterator(default_sentinel_t)):
142 Add constructor.
143 (operator==(istream_iterator, default_sentinel_t)): Add operator.
144 (ostream_iterator::difference_type): Define to ptrdiff_t for C++20.
145 * include/bits/streambuf_iterator.h
146 (istreambuf_iterator(default_sentinel_t)): Add constructor.
147 (operator==(istreambuf_iterator, default_sentinel_t)): Add operator.
148 * testsuite/24_iterators/istream_iterator/cons/sentinel.cc:
149 New test.
150 * testsuite/24_iterators/istream_iterator/sentinel.cc: New test.
151 * testsuite/24_iterators/istreambuf_iterator/cons/sentinel.cc:
152 New test.
153 * testsuite/24_iterators/istreambuf_iterator/sentinel.cc: New test.
154
3841739c
JW
155 * include/std/ranges (__deep_const_range, __enable_view_impl): Remove.
156 (ranges::enable_view): Simplify (LWG 3326).
157 * include/bits/range_access.h (ranges::enable_view): Declare.
158 * include/bits/regex.h (__enable_view_impl): Remove partial
159 specialization.
160 * include/bits/stl_multiset.h (__enable_view_impl): Likewise.
161 * include/bits/stl_set.h (__enable_view_impl): Likewise.
162 * include/bits/unordered_set.h (__enable_view_impl): Likewise.
163 * include/debug/multiset.h (__enable_view_impl): Likewise.
164 * include/debug/set.h (__enable_view_impl): Likewise.
165 * include/debug/unordered_set (__enable_view_impl): Likewise.
166 * include/experimental/string_view (ranges::enable_view): Define
167 partial specialization.
168 * include/std/span (ranges::enable_view): Likewise.
169 * include/std/string_view (ranges::enable_view): Likewise.
170 * testsuite/std/ranges/view.cc: Check satisfaction of updated concept.
171
9e589880
JW
1722020-02-21 Jonathan Wakely <jwakely@redhat.com>
173
174 * include/std/optional (operator<=>(optional<T>, optional<U>))
175 (operator<=>(optional<T>, nullopt), operator<=>(optional<T>, U)):
176 Define for C++20.
177 * include/std/tuple (__tuple_cmp): New helper function for <=>.
178 (operator<=>(tuple<T...>, tuple<U>...)): Define for C++20.
179 * include/std/variant (operator<=>(variant<T...>, variant<T...>))
180 (operator<=>(monostate, monostate)): Define for C++20.
181 * testsuite/20_util/optional/relops/three_way.cc: New test.
182 * testsuite/20_util/tuple/comparison_operators/three_way.cc: New test.
183 * testsuite/20_util/variant/89851.cc: Move to ...
184 * testsuite/20_util/variant/relops/89851.cc: ... here.
185 * testsuite/20_util/variant/90008.cc: Move to ...
186 * testsuite/20_util/variant/relops/90008.cc: ... here.
187 * testsuite/20_util/variant/relops/three_way.cc: New test.
188
5586e506
PP
1892020-02-20 Patrick Palka <ppalka@redhat.com>
190
6e63438a
PP
191 * include/std/ranges (views::__adaptor::__maybe_refwrap): New utility
192 function.
193 (views::__adaptor::_RangeAdaptor::operator()): Add comments. Use
194 __maybe_refwrap to capture lvalue references by reference, and then use
195 unwrap_reference_t to forward the by-reference captures as references.
196 * testsuite/std/ranges/adaptors/split.cc: Augment test.
197 * testsuite/std/ranges/adaptors/split_neg.cc: New test.
198
5586e506
PP
199 * include/std/ranges (iota_view): Forward declare _Sentinel.
200 (iota_view::_Iterator): Befriend _Sentinel.
201 (iota_view::_Sentinel::_M_equal): New member function.
202 (iota_view::_Sentinel::operator==): Use it.
203 (views::_Iota::operator()): Forward __f using the correct type.
204 * testsuite/std/ranges/access/ssize.cc (test06): Don't call views::iota
205 with integers of different signedness, to appease iota_view's deduction
206 guide.
207 * testsuite/std/ranges/iota/iota_view.cc: Augment test.
208
c7b591f3
JW
2092020-02-20 Jonathan Wakely <jwakely@redhat.com>
210
e817c23f
JW
211 * include/bits/range_access.h (ranges::begin): Reject array of
212 incomplete type.
213 (ranges::end, ranges::size): Require arrays to be bounded.
214 (ranges::data): Require lvalue or borrowed_range.
215 (ranges::iterator_t): Remove constraint.
216 * testsuite/std/ranges/access/begin.cc: Do not check array of
217 incomplete type.
218 * testsuite/std/ranges/access/begin_neg.cc: New test.
219 * testsuite/std/ranges/access/end_neg.cc: Adjust expected error.
220 * testsuite/std/ranges/access/size_neg.cc: Adjust expected error.
221 * testsuite/std/ranges/access/ssize.cc: Do not check array of
222 incomplete type.
223
4be779f5
JW
224 * include/std/system_error (error_category::operator<=>)
225 (operator<=>(const error_code&, const error_code&))
226 (operator<=>(const error_condition&, const error_condition&)): Define
227 for C++20.
228 * testsuite/19_diagnostics/error_category/operators/less.cc: New test.
229 * testsuite/19_diagnostics/error_category/operators/three_way.cc: New
230 test.
231 * testsuite/19_diagnostics/error_code/operators/equal.cc: Remove
232 incorrect comment.
233 * testsuite/19_diagnostics/error_code/operators/less.cc: New test.
234 * testsuite/19_diagnostics/error_code/operators/not_equal.cc: Remove
235 incorrect comment.
236 * testsuite/19_diagnostics/error_code/operators/three_way.cc: New test.
237 * testsuite/19_diagnostics/error_condition/operators/equal.cc: Remove
238 incorrect comment.
239 * testsuite/19_diagnostics/error_condition/operators/less.cc: New test.
240 * testsuite/19_diagnostics/error_condition/operators/not_equal.cc:
241 Remove incorrect comment.
242 * testsuite/19_diagnostics/error_condition/operators/three_way.cc: New
243 test.
244
20fa41e6
JW
245 * libsupc++/typeinfo (type_info::operator!=): Remove for C++20.
246
c7b591f3
JW
247 * include/std/thread (thread::id::operator<=>): Define for C++20.
248 * testsuite/30_threads/thread/id/70294.cc: Do not take addresses of
249 functions in namespace std.
250 * testsuite/30_threads/thread/id/operators_c++20.cc: New test.
251
38c7b74d
PP
2522020-02-19 Patrick Palka <ppalka@redhat.com>
253
254 * testsuite/std/ranges/adaptors/split.cc (test03): Don't include the
255 null terminator of the underlying string as part of the test_range.
256 (main): Call test03.
257
a45fb21a
JW
2582020-02-19 Jonathan Wakely <jwakely@redhat.com>
259
1b425f3a
JW
260 * include/bits/stl_iterator.h (common_iterator): Add copyable<I>
261 requirement (LWG 3385).
262 * testsuite/24_iterators/headers/iterator/synopsis_c++20.cc: Adjust
263 expected declaration.
264
7433536b
JW
265 * include/std/ranges (take_while_view, drop_view, drop_while_view)
266 (elements_view:_Iterator): Initialize data members (LWG 3364).
267
256f67aa
JW
268 * libsupc++/compare (three_way_comparable): Remove always-false check
269 that should have been removed with weak_equality (P1959R0).
270 (three_way_comparable_with): Likewise. Reorder requirements (LWG 3360).
271
0294dc5f
JW
272 * include/std/concepts (__detail::__partially_ordered_with): Move here
273 from <compare>.
274 (totally_ordered, totally_ordered_with): Use __partially_ordered_with
275 to simplify definition (LWG 3331).
276 * libsupc++/compare (__detail::__partially_ordered_with): Move to
277 <concepts>.
278
241ed965
JW
279 * include/std/concepts (totally_ordered_with): Remove redundant
280 requirement (LWG 3329).
281
77f5310f
JW
282 * include/std/ranges (__detail::__convertible_to_non_slicing): New
283 helper concept.
284 (__detail::__pair_like_convertible_to): Remove.
285 (__detail::__pair_like_convertible_from): Add requirements for
286 non-slicing conversions.
287 (subrange): Constrain constructors with __convertible_to_non_slicing.
288 Remove constructors from pair-like types. Add new deduction guide.
289 * testsuite/std/ranges/subrange/lwg3282_neg.cc: New test.
290
59aa9e57
JW
291 * include/bits/iterator_concepts.h (iter_move): Add declaration to
292 prevent unqualified lookup finding a suitable declaration (LWG 3247).
293
e89100ef
JW
294 * include/std/memory_resource (polymorphic_allocator::allocate)
295 (polymorphic_allocator::allocate_object): Change type of exception to
296 bad_array_new_length (LWG 3237).
297 * testsuite/20_util/polymorphic_allocator/lwg3237.cc: New test.
298
bb54e0b8
JW
299 * include/std/type_traits (__cpp_lib_unwrap_ref): Define (LWG 3348).
300 * include/std/version (__cpp_lib_unwrap_ref): Likewise.
301 * testsuite/20_util/unwrap_reference/1.cc: Check macro.
302 * testsuite/20_util/unwrap_reference/3.cc: New test.
303
5f031f97
JW
304 * include/std/numeric (midpoint(T8, T*)): Do not check for complete
305 type during overload resolution, use static assert instead (LWG 3200).
306 * testsuite/26_numerics/midpoint/pointer.cc: Do not test with
307 incomplete type.
308 * testsuite/26_numerics/midpoint/pointer_neg.cc: New test.
309
66ae31eb
JW
310 * include/std/span (span(T (&)[N])): Use non-deduced context to
311 prevent first parameter from interfering with class template argument
312 deduction (LWG 3369).
313 * testsuite/23_containers/span/deduction.cc: Add missing 'const'.
314 * testsuite/23_containers/span/lwg3255.cc: Check for construction from
315 rvalues.
316
247f410b
JW
317 * include/std/span (span::const_iterator, span::const_reverse_iterator)
318 (span::cbegin(), span::cend(), span::crbegin(), span::crend()):
319 Remove (LWG 3320).
320 * testsuite/23_containers/span/everything.cc: Replace uses of cbegin
321 and cend.
322 * testsuite/20_util/specialized_algorithms/destroy/constrained.cc:
323 Likewise.
324 * testsuite/20_util/specialized_algorithms/uninitialized_copy/
325 constrained.cc: Likewise.
326 * testsuite/20_util/specialized_algorithms/
327 uninitialized_default_construct/constrained.cc: Likewise.
328 * testsuite/20_util/specialized_algorithms/uninitialized_fill/
329 constrained.cc: Likewise.
330 * testsuite/20_util/specialized_algorithms/uninitialized_move/
331 constrained.cc: Likewise.
332 * testsuite/20_util/specialized_algorithms/
333 uninitialized_value_construct/constrained.cc: Likewise.
334
aca60ecf
JW
335 * include/bits/range_access.h (range_size_t): Define alias template.
336 * include/std/ranges (all_view): Rename to views::all_t (LWG 3335).
337 * testsuite/std/ranges/adaptors/filter.cc: Adjust to new name.
338
4cc3b275
JW
339 * include/std/ranges (filter_view, transform_view, take_view)
340 (join_view, split_view, reverse_view): Remove commented-out converting
341 constructors (LWG 3280).
342
5f3641d0
JW
343 * include/std/memory (uninitialized_construct_using_allocator): Use
344 std::construct_at (LWG 3321).
345
020a03ee
JW
346 * include/std/memory_resource (polymorphic_allocator::allocate_bytes)
347 (polymorphic_allocator::allocate_object)
348 (polymorphic_allocator::new_object): Add nodiscard attribute (LWG3304).
349
15411a64
JW
350 LWG 3379. "safe" in several library names is misleading
351 * include/bits/range_access.h (enable_safe_range): Rename to
352 enable_borrowed_range.
353 (__detail::__maybe_safe_range): Rename to __maybe_borrowed_range.
354 (safe_range): Rename to borrowed_range.
355 * include/bits/ranges_algo.h: Adjust to use new names.
356 * include/bits/ranges_algobase.h: Likewise.
357 * include/bits/ranges_uninitialized.h: Likewise.
358 * include/std/ranges: Likewise.
359 (safe_iterator_t): Rename to borrowed_iterator_t.
360 (safe_subrange_t): Rename to borrowed_subrange_t.
361 * include/std/span: Adjust to use new names.
362 * include/std/string_view: Likewise.
363 * include/experimental/string_view: Likewise.
364 * testsuite/std/ranges/access/begin.cc: Likewise.
365 * testsuite/std/ranges/access/cbegin.cc: Likewise.
366 * testsuite/std/ranges/access/cdata.cc: Likewise.
367 * testsuite/std/ranges/access/cend.cc: Likewise.
368 * testsuite/std/ranges/access/crbegin.cc: Likewise.
369 * testsuite/std/ranges/access/crend.cc: Likewise.
370 * testsuite/std/ranges/access/data.cc: Likewise.
371 * testsuite/std/ranges/access/end.cc: Likewise.
372 * testsuite/std/ranges/access/rbegin.cc: Likewise.
373 * testsuite/std/ranges/access/rend.cc: Likewise.
374 * testsuite/std/ranges/safe_range.cc: Likewise.
375 * testsuite/std/ranges/safe_range_types.cc: Likewise.
376 * testsuite/util/testsuite_iterators.h: Likewise.
377
fa89adaa
JW
378 * include/std/ranges (tuple_element<0, const subrange<I, S, K>>)
379 (tuple_element<1, const subrange<I, S, K>>): Add partial
380 specializations (LWG 3398).
381 * testsuite/std/ranges/subrange/tuple_like.cc: New test.
382
a45fb21a
JW
383 * include/bits/ranges_algo.h (__find_fn, __find_first_of_fn)
384 (__adjacent_find_fn, __remove_if_fn, __remove_copy_if_fn)
385 (__unique_fn, __unique_copy_fn): Remove redundant conversions to bool.
386
242b4fb7
PP
3872020-02-18 Patrick Palka <ppalka@redhat.com>
388
389 P1983R0 Wording for GB301, US296, US292, US291, and US283
390 * include/std/ranges (filter_view::pred): New member function.
391 (join_view::_Iterator::_Iterator): Remove now-redundant comment since
392 P1983R0 fixes the highlighted issue in the same way.
393 (join_view::_Iterator<_Const>): Add friend
394 join_view::_Iterator<!_Const>.
395 (join_view::_M_inner): Remove mutable specifier, effectively reverting
396 the proposed wording changes of P3278.
397 (join_view::begin): Refine the condition for when to return a const
398 iterator.
399 (split_view::_OuterIter::_OuterIter): Adjust constraints.
400 * testsuite/std/ranges/adaptors/filter.cc: Test that filter_view::pred
401 exists and works.
402
f5b4dc38
JW
4032020-02-18 Jonathan Wakely <jwakely@redhat.com>
404
a5b213dd
JW
405 PR libstdc++/93818
406 * include/std/ranges (_RangeAdaptor): Add deduction guide.
407 (filter_view::_Iterator): Add alias _Vp_iter and use in place of
408 iterator_t<_Vp>.
409 (filter_view::_Iterator::_S_iter_cat()): Add 'typename'.
410 (transform_view::_Iterator): Add alias _Base_iter and use in place of
411 iterator_t<_Base>.
412 (transform_view::_Iterator::_S_iter_cat()): Add 'typename'.
413 (join_view::_Iterator): Add _Outer_iter and _Inner_iter aliases.
414 (join_view::_Iterator::_S_iter_cat()): Add 'typename'.
415 (split_view::_InnerIter::_S_iter_cat()): Likewise.
416
ce7b39d0
JW
417 * testsuite/20_util/integer_comparisons/equal.cc: Fix invalid
418 assumption that long is wider than int.
419 * testsuite/20_util/integer_comparisons/greater_equal.cc: Likewise.
420 * testsuite/20_util/integer_comparisons/less.cc: Likewise.
421 * testsuite/20_util/integer_comparisons/less_equal.cc: Likewise.
422 * testsuite/20_util/integer_comparisons/not_equal.cc: Likewise.
423
9b8e2dea
JW
424 P1976R2 Fixed-size span construction from dynamic range
425 * include/std/span (__cpp_lib_span): Update value.
426 (span(It, size_type), span(It, End)): Make conditionally explicit. Add
427 assertion.
428 (span(R&&), span(const span<OType, OExtent>&)): Likewise and relax
429 constraints.
430 (span::first<Count>(), span::last<Count>()): Use explicit type in
431 return statement.
432 (as_bytes, as_writable_bytes): Likewise.
433 * include/std/version (__cpp_lib_span): Update value.
434 * testsuite/23_containers/span/1.cc: Check new value.
435 * testsuite/23_containers/span/2.cc: Check new value.
436 * testsuite/23_containers/span/explicit.cc: New test.
437
d6c9e372
JW
438 * include/std/span (span::__is_compatible_array): Simplify alias
439 template by using requires-clause.
440 (span::__is_compatible_ref): New alias template for constraining
441 constructors.
442 (span::__is_compatible_iterator, span::__is_compatible_range): Remove.
443 (span(It, size_type), span(It, End)): Use __is_compatible_ref.
444 (span(T(&)[N], span(array<T, N>&), span(const array<T, N>&)): Remove
445 redundant parentheses.
446 (span(R&&)): Add missing constraints.
447
f09f3242
JW
448 * include/std/span (span): Reorder members and rename template
449 parameters to match declarations in the C++2a working paper.
450
f5b4dc38
JW
451 P2116R0 Remove tuple-like protocol support from fixed-extent span
452 * include/std/span (get, tuple_size, tuple_element): Remove.
453 * testsuite/23_containers/span/everything.cc: Remove checks for
454 tuple-like API.
455 * testsuite/23_containers/span/get_neg.cc: Remove.
456 * testsuite/23_containers/span/tuple_element_dynamic_neg.cc: Remove.
457 * testsuite/23_containers/span/tuple_element_oob_neg.cc: Remove.
458 * testsuite/23_containers/span/tuple_size_neg.cc: Remove.
459
f3169941
PP
4602020-02-17 Patrick Palka <ppalka@redhat.com>
461
aa667c3f
PP
462 P2106R0 Alternative wording for GB315 and GB316
463 * include/bits/ranges_algo.h (in_fun_result): New.
464 (for_each_result, for_each_n_result): Change into an alias of
465 in_fun_result.
466 (in_in_result): New.
467 (mismatch_result): Change into an alias of in_in_result.
468 (copy_if_result): Change into an alias of in_out_result.
469 (swap_ranges_result): Change into an alias of in_in_result.
470 (unary_transform_result): Change into an alias of in_out_result.
471 (in_in_out_result): New.
472 (binary_transform_result): Change into an alias of in_in_out_result.
473 (replace_copy_result, replace_copy_if_result, remove_copy_if_result,
474 remove_copy_result, unique_copy_result, reverse_copy_result,
475 rotate_copy_result, partial_sort_copy_result): Change into an alias of
476 in_out_result.
477 (in_out_out_result): New.
478 (partition_copy_result, merge_result): Change into an alias of
479 in_out_out_result.
480 (set_union_result, set_intersection_result): Change into an alias of
481 in_in_out_result.
482 (set_difference_result): Change into an alias of in_out_result.
483 (set_symmetric_difference): Change into an alias of in_in_out_result.
484 (min_max_result): New.
485 (minmax_result, minmax_element_result): Change into an alias of
486 min_max_result.
487 (in_found_result): New.
488 (next_permutation_result, prev_permutation_result): Change into an alias
489 of in_found_result.
490 (__next_permutation_fn::operator(), __prev_permutation_fn::operator()):
491 Adjust following changes to next_permutation_result and
492 prev_permutation_result.
493 * include/bits/ranges_algobase.h (in_out_result): New.
494 (copy_result, move_result, move_backward_result, copy_backward_result,
495 copy_n_result): Change into an alias of in_out_result.
496 * include/bits/ranges_uninitialized.h (uninitialized_copy_result,
497 uninitialized_copy_n_result, uninitialized_move_result,
498 uninitialized_move_n_result): Likewise.
499 * testsuite/25_algorithms/next_permutation/constrained.cc: Adjust uses of
500 structured bindings.
501 * testsuite/25_algorithms/prev_permutation/constrained.cc: Likewise.
502
f3169941
PP
503 P1243R4 Rangify new algorithms
504 * include/bits/ranges_algo.h (for_each_n_result, __for_each_n_fn,
505 for_each_n, __sample_fn, sample, __clamp_fn, clamp): New.
506 * testsuite/25_algorithms/clamp/constrained.cc: New test.
507 * testsuite/25_algorithms/for_each/constrained.cc: Augment test.
508 * testsuite/25_algorithms/sample/constrained.cc: New test.
509
98cf2c26
JW
5102020-02-17 Jonathan Wakely <jwakely@redhat.com>
511
c5e1c1d3
JW
512 P1964R2 Wording for boolean-testable
513 * include/bits/ranges_algo.h (__find_fn, __find_first_of_fn)
514 (__adjacent_find_fn): Cast result of predicate to bool.
515 * include/std/concepts (__boolean): Remove.
516 (__detail::__boolean_testable_impl, __detail::__boolean_testable): Add
517 new helper concepts.
518 (__detail::__weakly_eq_cmp_with, totally_ordered, totally_ordered_with)
519 (predicate): Use __boolean_testable instead of boolean.
520 * libsupc++/compare (__detail::__partially_ordered, _Synth3way):
521 Likewise.
522
7ab36231
JW
523 P1970R2 Consistency for size() functions: Add ranges::ssize
524 * include/bits/range_access.h (_SSize, ssize): Define for C++20.
525 * testsuite/std/ranges/access/ssize.cc: New test.
526
9866abe3
JW
527 P1956R1 On the names of low-level bit manipulation functions
528 * include/bits/hashtable_policy.h: Update comment.
529 * include/std/bit (__ispow2, __ceil2, __floor2, __log2p1): Rename.
530 (ispow2, ceil2, floor2, log2p1): Likewise.
531 (__cpp_lib_int_pow2): Add feature test macro.
532 * include/std/charconv (__to_chars_len_2): Adjust use of __log2p1.
533 * include/std/memory (assume_aligned): Adjust use of ispow2.
534 * include/std/version (__cpp_lib_int_pow2): Add.
535 * libsupc++/new_opa.cc: Adjust use of __ispow2.
536 * src/c++17/memory_resource.cc: Likewise, and for __ceil2 and __log2p1.
537 * testsuite/17_intro/freestanding.cc: Adjust use of ispow2.
538 * testsuite/26_numerics/bit/bit.pow.two/ceil2.cc: Rename to ...
539 * testsuite/26_numerics/bit/bit.pow.two/bit_ceil.cc: ... here.
540 * testsuite/26_numerics/bit/bit.pow.two/ceil2_neg.cc: Rename to ...
541 * testsuite/26_numerics/bit/bit.pow.two/bit_ceil_neg.cc: ... here.
542 * testsuite/26_numerics/bit/bit.pow.two/floor2.cc: Rename to ...
543 * testsuite/26_numerics/bit/bit.pow.two/bit_floor.cc: ... here.
544 * testsuite/26_numerics/bit/bit.pow.two/log2p1.cc: Rename to ...
545 * testsuite/26_numerics/bit/bit.pow.two/bit_width.cc: ... here.
546 * testsuite/26_numerics/bit/bit.pow.two/ispow2.cc: Rename to ...
547 * testsuite/26_numerics/bit/bit.pow.two/has_single_bit.cc: ... here.
548
cfbc8fbb
JW
549 * include/std/charconv: Add comment.
550
9cd4eeef
JW
551 PR libstdc++/92546 (partial)
552 * include/bits/random.h (uniform_random_bit_generator): Move definition
553 to <bits/uniform_int_dist.h>.
554 * include/bits/ranges_algo.h: Include <bits/uniform_int_dist.h> instead
555 of <bits/random.h>.
556 * include/bits/ranges_algobase.h: Do not include <cmath>.
557 * include/bits/uniform_int_dist.h (uniform_random_bit_generator):
558 Move here.
559 * include/std/ranges: Do not include <limits>.
560 * testsuite/26_numerics/random/pr60037-neg.cc: Adjust dg-error lineno.
561
c03b53da
JW
562 PR libstdc++/92546 (partial)
563 * include/Makefile.am: Add new header.
564 * include/Makefile.in: Regenerate.
565 * include/bits/int_limits.h: New header.
566 * include/bits/parse_numbers.h (__select_int::_Select_int): Replace
567 numeric_limits with __detail::__int_limits.
568 * include/std/bit (__rotl, __rotr, __countl_zero, __countl_one)
569 (__countr_zero, __countr_one, __popcount, __ceil2, __floor2, __log2p1):
570 Likewise.
571 * include/std/charconv (__to_chars_8, __from_chars_binary)
572 (__from_chars_alpha_to_num, from_chars): Likewise.
573 * include/std/memory_resource (polymorphic_allocator::allocate)
574 (polymorphic_allocator::allocate_object): Likewise.
575 * include/std/string_view (basic_string_view::_S_compare): Likewise.
576 * include/std/utility (in_range): Likewise.
577 * testsuite/20_util/integer_comparisons/in_range_neg.cc: Adjust for
578 extra error about incomplete type __int_limits<bool>.
579 * testsuite/26_numerics/bit/bit.count/countl_one.cc: Include <limits>.
580 * testsuite/26_numerics/bit/bit.count/countl_zero.cc: Likewise.
581 * testsuite/26_numerics/bit/bit.count/countr_one.cc: Likewise.
582 * testsuite/26_numerics/bit/bit.count/countr_zero.cc: Likewise.
583 * testsuite/26_numerics/bit/bit.count/popcount.cc: Likewise.
584 * testsuite/26_numerics/bit/bit.pow.two/ceil2_neg.cc: Likewise.
585 * testsuite/26_numerics/bit/bit.pow.two/ceil2.cc: Likewise.
586 * testsuite/26_numerics/bit/bit.pow.two/floor2.cc: Likewise.
587 * testsuite/26_numerics/bit/bit.pow.two/ispow2.cc: Likewise.
588 * testsuite/26_numerics/bit/bit.pow.two/log2p1.cc: Likewise.
589 * testsuite/26_numerics/bit/bit.rotate/rotl.cc: Likewise.
590 * testsuite/26_numerics/bit/bit.rotate/rotr.cc: Likewise.
591
4540ef78
JW
592 * python/libstdcxx/v6/printers.py (StdCmpCatPrinter.to_string): Update
593 value for partial_ordering::unordered.
594
d6dfa3da
JW
595 * include/bits/iterator_concepts.h (indirectly_copyable_storable): Add
596 const-qualified expression variations.
597 * include/std/concepts (copyable): Likewise.
598
98cf2c26
JW
599 * include/std/type_traits (__is_standard_integer): New helper trait.
600 * include/std/utility (cmp_equal, cmp_not_equal, cmp_less, cmp_greater)
601 (cmp_less_equal, cmp_greater_equal, in_range): Define for C++20.
602 * include/std/version (__cpp_lib_integer_comparison_functions): Define.
603 * testsuite/20_util/integer_comparisons/1.cc: New test.
604 * testsuite/20_util/integer_comparisons/2.cc: New test.
605 * testsuite/20_util/integer_comparisons/equal.cc: New test.
606 * testsuite/20_util/integer_comparisons/equal_neg.cc: New test.
607 * testsuite/20_util/integer_comparisons/greater_equal.cc: New test.
608 * testsuite/20_util/integer_comparisons/greater_equal_neg.cc: New test.
609 * testsuite/20_util/integer_comparisons/greater_neg.cc: New test.
610 * testsuite/20_util/integer_comparisons/in_range.cc: New test.
611 * testsuite/20_util/integer_comparisons/in_range_neg.cc: New test.
612 * testsuite/20_util/integer_comparisons/less.cc: New test.
613 * testsuite/20_util/integer_comparisons/less_equal.cc: New test.
614 * testsuite/20_util/integer_comparisons/less_equal_neg.cc: New test.
615 * testsuite/20_util/integer_comparisons/less_neg.cc: New test.
616 * testsuite/20_util/integer_comparisons/not_equal.cc: New test.
617 * testsuite/20_util/integer_comparisons/not_equal_neg.cc: New test.
618
93b8cfce
PP
6192020-02-16 Patrick Palka <ppalka@redhat.com>
620
621 * include/bits/ranges_algo.h (__lexicographical_compare_fn::operator()):
622 Move code after an early exit constexpr if to under an else branch.
623 * include/bits/ranges_algobase.h (__equal_fn::operator()): Likewise.
624
90b7eb65
PP
6252020-02-15 Patrick Palka <ppalka@redhat.com>
626
55992626
PP
627 * include/bits/ranges_algo.h: Adjust whitespace and formatting.
628 * include/bits/ranges_algobase.h: Likewise.
629 * include/bits/ranges_uninitialized.h: Likewise.
630
b40c57bd
PP
631 * include/bits/ranges_algo.h: (adjacent_find, all_of, any_of,
632 binary_search, copy_if, count, count_if, equal_range, find, find_end,
633 find_first_of, find_if, find_if_not, for_each, generate, generate_n,
634 includes, inplace_merge, is_heap, is_heap_until, is_partitioned,
635 is_permutation, is_sorted, is_sorted_until, lexicographical_compare,
636 lower_bound, make_heap, max, max_element, merge, min, min_element,
637 minmax, minmax_element, mismatch, next_permutation, none_of,
638 nth_element, partial_sort, partial_sort_copy, partition, partition_copy,
639 partition_point, pop_heap, prev_permutation, push_heap, remove,
640 remove_copy, remove_copy_if, remove_if, replace, replace_copy,
641 replace_copy_if, replace_if, reverse, reverse_copy, rotate, rotate_copy,
642 search, search_n, set_difference, set_intersection,
643 set_symmetric_difference, set_union, shuffle, sort, sort_heap,
644 stable_partition, stable_sort, swap_ranges, transform, unique,
645 unique_copy, upper_bound): Convert into function objects.
646 * include/bits/ranges_algobase.h: (equal, copy, move, copy_n, fill_n,
647 fill, move_backward, copy_backward): Likewise.
648 * include/bits/ranges_uninitialized.h (uninitialized_default_construct,
649 uninitialized_default_construct_n, uninitialized_value_construct,
650 uninitialized_value_construct_n, uninitialized_copy,
651 uninitialized_copy_n, uninitialized_move, uninitialized_move_n,
652 uninitialized_fill, uninitialized_fill_n, construct_at, destroy_at,
653 destroy, destroy_n): Likewise.
654
90b7eb65
PP
655 * include/bits/ranges_algo.h (ranges::__find_end): Fold into ...
656 (ranges::find_end): ... here.
657 (ranges::__lexicographical_compare): Fold into ...
658 (ranges::lexicographical_compare): ... here.
659 * include/bits/ranges_algobase.h (ranges::__equal): Fold into ...
660 (ranges::equal): ... here.
661
55b00d14
JW
6622020-02-15 Jonathan Wakely <jwakely@redhat.com>
663
664 * include/bits/erase_if.h (__cpp_lib_erase_if): Define to 202002L.
665 * include/std/deque: Likewise.
666 * include/std/forward_list: Likewise.
667 * include/std/list: Likewise.
668 * include/std/string: Likewise.
669 * include/std/vector: Likewise.
670 * include/std/version: Likewise.
671 * testsuite/23_containers/deque/erasure.cc: Test for new value.
672 * testsuite/23_containers/forward_list/erasure.cc: Likewise.
673 * testsuite/23_containers/list/erasure.cc: Likewise.
674 * testsuite/23_containers/map/erasure.cc: Likewise.
675 * testsuite/23_containers/set/erasure.cc: Likewise.
676 * testsuite/23_containers/unordered_map/erasure.cc: Likewise.
677 * testsuite/23_containers/unordered_set/erasure.cc: Likewise.
678 * testsuite/23_containers/vector/erasure.cc: Likewise.
679
5b1d5885
JW
6802020-02-15 Jonathan Wakely <jwakely@redhat.com>
681
682 * include/bits/random.h (uniform_random_bit_generator): Require min()
683 and max() to be constant expressions and min() to be less than max().
684 * testsuite/26_numerics/random/concept.cc: Check additional cases.
685 * testsuite/26_numerics/random/pr60037-neg.cc: Adjust dg-error lineno.
686
90fc7b3c
PP
6872020-02-13 Patrick Palka <ppalka@redhat.com>
688
613c932f
PP
689 * include/Makefile.am: Add <bits/ranges_uninitialized.h>.
690 * include/Makefile.in: Regenerate.
691 * include/bits/ranges_uninitialized.h: New header.
692 * include/std/memory: Include it.
693 * testsuite/20_util/specialized_algorithms/destroy/constrained.cc: New
694 test.
695 * .../uninitialized_copy/constrained.cc: New test.
696 * .../uninitialized_default_construct/constrained.cc: New test.
697 * .../uninitialized_fill/constrained.cc: New test.
698 * .../uninitialized_move/constrained.cc: New test.
699 * .../uninitialized_value_construct/constrained.cc: New test.
700
90fc7b3c
PP
701 * include/Makefile.am: Add bits/ranges_algobase.h
702 * include/Makefile.in: Regenerate.
703 * bits/ranges_algo.h: Include <bits/ranges_algobase.h> and refactor
704 existing #includes.
705 (__detail::__is_normal_iterator, __detail::is_reverse_iterator,
706 __detail::__is_move_iterator, copy_result, move_result,
707 __equal, equal, copy_result, move_result, move_backward_result,
708 copy_backward_result, __copy_or_move_backward, __copy_or_move, copy,
709 move, copy_backward, move_backward, copy_n_result, copy_n, fill_n,
710 fill): Split out into ...
711 * bits/range_algobase.h: ... this new header.
712
99bbab9f
PP
7132020-02-12 Patrick Palka <ppalka@redhat.com>
714
715 LWG 3389 and LWG 3390
716 * include/bits/stl_iterator.h (move_move_iterator): Use std::move when
717 constructing the move_iterator with __i.
718 (counted_iterator::counted_iterator): Use std::move when initializing
719 M_current with __i.
720 * testsuite/24_iterators/counted_iterator/lwg3389.cc: New test.
721 * testsuite/24_iterators/move_iterator/lwg3390.cc: New test.
722
02ce382c
SL
7232020-02-12 Sandra Loosemore <sandra@codesourcery.com>
724
725 PR libstdc++/79193
726 PR libstdc++/88999
727
728 * configure: Regenerated.
729
b32a3f32
FD
7302020-02-12 François Dumont <fdumont@gcc.gnu.org>
731
732 * include/bits/hashtable.h
733 (_Hashtable<>(_Hashtable&&, std::allocator_type&)): Add
734 missing std namespace qualification to forward call.
735
dcda050e
JW
7362020-02-09 Jonathan Wakely <jwakely@redhat.com>
737
38660e87
JW
738 * testsuite/20_util/function_objects/range.cmp/equal_to.cc: Fix
739 comment.
740 * testsuite/20_util/function_objects/range.cmp/less.ccL Likewise.
741
97a7c229
JW
742 * include/std/ranges: Fix non-ASCII characters in comment.
743
dcda050e
JW
744 * include/bits/range_cmp.h (__detail::__eq_builtin_ptr_cmp): Require
745 equality comparison to be valid and return bool.
746 (__detail::__less_builtin_ptr_cmp): Likewise for less-than comparison.
747 * testsuite/20_util/function_objects/range.cmp/equal_to.cc: Check
748 type with ambiguous conversion to fundamental types.
749 * testsuite/20_util/function_objects/range.cmp/less.cc: Likewise.
750
d222d8ec
JW
7512020-02-07 Jonathan Wakely <jwakely@redhat.com>
752
c8dd2446
JW
753 * include/bits/iterator_concepts.h (iter_difference_t, iter_value_t):
754 Use remove_cvref_t.
755 (readable_traits): Rename to indirectly_readable_traits.
756 (readable): Rename to indirectly_readable.
757 (writable): Rename to indirectly_writable.
758 (__detail::__iter_exchange_move): Do not use remove_reference_t.
759 (indirectly_swappable): Adjust requires expression parameter types.
760 expression.
761 * include/bits/ranges_algo.h (ranges::transform, ranges::replace)
762 (ranges::replace_if, ranges::generate_n, ranges::generate)
763 (ranges::remove): Use new name for writable.
764 * include/bits/stl_iterator.h (__detail::__common_iter_has_arrow):
765 Use new name for readable.
766 * include/ext/pointer.h (readable_traits<_Pointer_adapter<P>>): Use
767 new name for readable_traits.
768 * testsuite/24_iterators/associated_types/readable.traits.cc: Likewise.
769 * testsuite/24_iterators/indirect_callable/projected.cc: Adjust for
770 new definition of indirectly_readable.
771
d222d8ec
JW
772 * include/bits/stl_iterator.h (__detail::__common_iter_ptr): Change
773 to take parameters of common_iterator, instead of the common_iterator
774 type itself. Fix argument for __common_iter_has_arrow constraint.
775 (iterator_traits<common_iterator<I, S>>::pointer): Adjust.
776
572992c8
JW
7772020-02-07 Jonathan Wakely <jwakely@redhat.com>
778
779 * include/std/ranges (iota_view): Add braces to prevent -Wempty-body
780 warning.
781 (basic_istream_view::_Iterator::operator++()): Add missing return.
782
cba9ef06
PP
7832020-02-07 Patrick Palka <ppalka@redhat.com>
784
a04f635d
PP
785 * include/bits/ranges_algo.h: Remove extraneous &&.
786
b7903d9f
PP
787 * include/std/ranges (ranges::__detail::__stream_extractable,
788 ranges::basic_istream_view, ranges::istream_view): Define.
789 * testsuite/std/ranges/istream_view: New test.
790
cba9ef06
PP
791 Implement C++20 range adaptors
792 * include/std/ranges: Include <bits/refwrap.h> and <tuple>.
793 (subrange::_S_store_size): Mark as const instead of constexpr to
794 avoid what seems to be a bug in GCC.
795 (__detail::__box): Give it defaulted copy and move constructors.
55d4cbcb
PP
796 (ranges::views::_Single::operator()): Mark constexpr.
797 (ranges::views::_Iota::operator()): Mark constexpr.
cba9ef06 798 (__detail::Empty): Define.
55d4cbcb
PP
799 (ranges::views::__closure::_RangeAdaptor,
800 ranges::views::__closure::_RangeAdaptorClosure, ref_view, all_view,
801 ranges::views::all, ranges::__detail::find_if,
802 ranges::__detail::find_if_not, ranges::__detail::mismatch,
803 ranges::detail::min, filter_view, ranges::views::filter, transform_view,
804 ranges::views::transform, take_view, ranges::views::take,
805 take_while_view, ranges::views::take_while, drop_view,
806 ranges::views::drop, join_view, ranges::views::join,
cba9ef06 807 __detail::require_constant, __detail::tiny_range, split_view,
55d4cbcb
PP
808 ranges::views::split, ranges::views::_Counted, ranges::views::counted,
809 common_view, ranges::views::common, reverse_view,
810 ranges::views::reverse,
811 ranges::views::__detail::__is_reversible_subrange,
812 ranges::views::__detail::__is_reverse_view, reverse_view,
813 ranges::views::reverse, __detail::__has_tuple_element, elements_view,
814 ranges::views::elements, ranges::views::keys, ranges::views::values):
815 Define.
816 (views): Alias for ranges::views.
817 (tuple_size<ranges::subrange<>>, tuple_element<0, ranges::subrange>,
818 tuple_element<1, ranges::subrange>): New partial specializations.
cba9ef06
PP
819 * testsuite/std/ranges/adaptors/all.cc: New test.
820 * testsuite/std/ranges/adaptors/common.cc: Likewise.
821 * testsuite/std/ranges/adaptors/counted.cc: Likewise.
822 * testsuite/std/ranges/adaptors/drop.cc: Likewise.
823 * testsuite/std/ranges/adaptors/drop_while.cc: Likewise.
824 * testsuite/std/ranges/adaptors/elements.cc: Likewise.
825 * testsuite/std/ranges/adaptors/filter.cc: Likewise.
826 * testsuite/std/ranges/adaptors/join.cc: Likewise.
827 * testsuite/std/ranges/adaptors/reverse.cc: Likewise.
828 * testsuite/std/ranges/adaptors/split.cc: Likewise.
829 * testsuite/std/ranges/adaptors/take.cc: Likewise.
830 * testsuite/std/ranges/adaptors/take_while.cc: Likewise.
831 * testsuite/std/ranges/adaptors/transform.cc: Likewise.
832
5713834e
JW
8332020-02-07 Jonathan Wakely <jwakely@redhat.com>
834
0d57370c
JW
835 * libsupc++/compare (__cmp_cat::type): Define typedef for underlying
836 type of enumerations and comparison category types.
837 (__cmp_cat::_Ord, __cmp_cat::_Ncmp): Add underlying type.
838 (__cmp_cat::_Ncmp::unordered): Change value to 2.
839 (partial_ordering::_M_value, weak_ordering::_M_value)
840 (strong_ordering::_M_value): Change type to __cmp_cat::type.
841 (partial_ordering::_M_is_ordered): Remove data member.
842 (partial_ordering): Use second bit of _M_value for unordered. Adjust
843 comparison operators.
844 (weak_ordering::operator partial_ordering): Simplify to remove
845 branches.
846 (operator<=>(unspecified, weak_ordering)): Likewise.
847 (strong_ordering::operator partial_ordering): Likewise.
848 (strong_ordering::operator weak_ordering): Likewise.
849 (operator<=>(unspecified, strong_ordering)): Likewise.
850 * testsuite/18_support/comparisons/categories/partialord.cc: New test.
851 * testsuite/18_support/comparisons/categories/strongord.cc: New test.
852 * testsuite/18_support/comparisons/categories/weakord.cc: New test.
853
5713834e
JW
854 * include/std/ranges (iota_view::_Iterator): Fix typo in name of
855 __cpp_lib_three_way_comparison macro and use deduced return type for
856 operator<=>.
857 * testsuite/std/ranges/iota/iterator.cc: New test.
858
bc464641
PP
8592020-02-07 Patrick Palka <ppalka@redhat.com>
860 Jonathan Wakely <jwakely@redhat.com>
861
862 Implement C++20 constrained algorithms
863 * include/Makefile.am: Add new header.
864 * include/Makefile.in: Regenerate.
865 * include/std/algorithm: Include <bits/ranges_algo.h>.
866 * include/bits/ranges_algo.h: New file.
867 * testsuite/25_algorithms/adjacent_find/constrained.cc: New test.
868 * testsuite/25_algorithms/all_of/constrained.cc: New test.
869 * testsuite/25_algorithms/any_of/constrained.cc: New test.
870 * testsuite/25_algorithms/binary_search/constrained.cc: New test.
871 * testsuite/25_algorithms/copy/constrained.cc: New test.
872 * testsuite/25_algorithms/copy_backward/constrained.cc: New test.
873 * testsuite/25_algorithms/copy_if/constrained.cc: New test.
874 * testsuite/25_algorithms/copy_n/constrained.cc: New test.
875 * testsuite/25_algorithms/count/constrained.cc: New test.
876 * testsuite/25_algorithms/count_if/constrained.cc: New test.
877 * testsuite/25_algorithms/equal/constrained.cc: New test.
878 * testsuite/25_algorithms/equal_range/constrained.cc: New test.
879 * testsuite/25_algorithms/fill/constrained.cc: New test.
880 * testsuite/25_algorithms/fill_n/constrained.cc: New test.
881 * testsuite/25_algorithms/find/constrained.cc: New test.
882 * testsuite/25_algorithms/find_end/constrained.cc: New test.
883 * testsuite/25_algorithms/find_first_of/constrained.cc: New test.
884 * testsuite/25_algorithms/find_if/constrained.cc: New test.
885 * testsuite/25_algorithms/find_if_not/constrained.cc: New test.
886 * testsuite/25_algorithms/for_each/constrained.cc: New test.
887 * testsuite/25_algorithms/generate/constrained.cc: New test.
888 * testsuite/25_algorithms/generate_n/constrained.cc: New test.
889 * testsuite/25_algorithms/heap/constrained.cc: New test.
890 * testsuite/25_algorithms/includes/constrained.cc: New test.
891 * testsuite/25_algorithms/inplace_merge/constrained.cc: New test.
892 * testsuite/25_algorithms/is_partitioned/constrained.cc: New test.
893 * testsuite/25_algorithms/is_permutation/constrained.cc: New test.
894 * testsuite/25_algorithms/is_sorted/constrained.cc: New test.
895 * testsuite/25_algorithms/is_sorted_until/constrained.cc: New test.
896 * testsuite/25_algorithms/lexicographical_compare/constrained.cc: New
897 test.
898 * testsuite/25_algorithms/lower_bound/constrained.cc: New test.
899 * testsuite/25_algorithms/max/constrained.cc: New test.
900 * testsuite/25_algorithms/max_element/constrained.cc: New test.
901 * testsuite/25_algorithms/merge/constrained.cc: New test.
902 * testsuite/25_algorithms/min/constrained.cc: New test.
903 * testsuite/25_algorithms/min_element/constrained.cc: New test.
904 * testsuite/25_algorithms/minmax/constrained.cc: New test.
905 * testsuite/25_algorithms/minmax_element/constrained.cc: New test.
906 * testsuite/25_algorithms/mismatch/constrained.cc: New test.
907 * testsuite/25_algorithms/move/constrained.cc: New test.
908 * testsuite/25_algorithms/move_backward/constrained.cc: New test.
909 * testsuite/25_algorithms/next_permutation/constrained.cc: New test.
910 * testsuite/25_algorithms/none_of/constrained.cc: New test.
911 * testsuite/25_algorithms/nth_element/constrained.cc: New test.
912 * testsuite/25_algorithms/partial_sort/constrained.cc: New test.
913 * testsuite/25_algorithms/partial_sort_copy/constrained.cc: New test.
914 * testsuite/25_algorithms/partition/constrained.cc: New test.
915 * testsuite/25_algorithms/partition_copy/constrained.cc: New test.
916 * testsuite/25_algorithms/partition_point/constrained.cc: New test.
917 * testsuite/25_algorithms/prev_permutation/constrained.cc: New test.
918 * testsuite/25_algorithms/remove/constrained.cc: New test.
919 * testsuite/25_algorithms/remove_copy/constrained.cc: New test.
920 * testsuite/25_algorithms/remove_copy_if/constrained.cc: New test.
921 * testsuite/25_algorithms/remove_if/constrained.cc: New test.
922 * testsuite/25_algorithms/replace/constrained.cc: New test.
923 * testsuite/25_algorithms/replace_copy/constrained.cc: New test.
924 * testsuite/25_algorithms/replace_copy_if/constrained.cc: New test.
925 * testsuite/25_algorithms/replace_if/constrained.cc: New test.
926 * testsuite/25_algorithms/reverse/constrained.cc: New test.
927 * testsuite/25_algorithms/reverse_copy/constrained.cc: New test.
928 * testsuite/25_algorithms/rotate/constrained.cc: New test.
929 * testsuite/25_algorithms/rotate_copy/constrained.cc: New test.
930 * testsuite/25_algorithms/search/constrained.cc: New test.
931 * testsuite/25_algorithms/search_n/constrained.cc: New test.
932 * testsuite/25_algorithms/set_difference/constrained.cc: New test.
933 * testsuite/25_algorithms/set_intersection/constrained.cc: New test.
934 * testsuite/25_algorithms/set_symmetric_difference/constrained.cc: New
935 test.
936 * testsuite/25_algorithms/set_union/constrained.cc: New test.
937 * testsuite/25_algorithms/shuffle/constrained.cc: New test.
938 * testsuite/25_algorithms/sort/constrained.cc: New test.
939 * testsuite/25_algorithms/stable_partition/constrained.cc: New test.
940 * testsuite/25_algorithms/stable_sort/constrained.cc: New test.
941 * testsuite/25_algorithms/swap_ranges/constrained.cc: New test.
942 * testsuite/25_algorithms/transform/constrained.cc: New test.
943 * testsuite/25_algorithms/unique/constrained.cc: New test.
944 * testsuite/25_algorithms/unique_copy/constrained.cc: New test.
945 * testsuite/25_algorithms/upper_bound/constrained.cc: New test.
946
d1aa7705
JW
9472020-02-06 Jonathan Wakely <jwakely@redhat.com>
948
bd630df0
JW
949 * include/bits/stl_iterator.h (__detail::__common_iter_ptr): Fix PR
950 number in comment. Fix indentation.
951
d1aa7705
JW
952 * include/bits/stl_algobase.h (__iter_swap, __iter_swap<true>): Remove
953 redundant _GLIBCXX20_CONSTEXPR.
954
26eae9ac
JW
955 * include/std/ranges (viewable_range): Replace decay_t with
956 remove_cvref_t (LWG 3375).
957
269e8130
JW
9582020-02-05 Jonathan Wakely <jwakely@redhat.com>
959
960 * include/bits/iterator_concepts.h (iter_reference_t)
961 (iter_rvalue_reference_t, iter_common_reference_t, indirect_result_t):
962 Remove workarounds for PR c++/67704.
963 * testsuite/24_iterators/aliases.cc: New test.
964
7db12d15
PP
9652020-02-05 Patrick Palka <ppalka@redhat.com>
966
967 * include/bits/stl_iterator.h (move_iterator::move_iterator): Move __i
968 when initializing _M_current.
969 (move_iterator::base): Split into two overloads differing in
970 ref-qualifiers as in P1207R4 for C++20.
971
9962493c
JW
9722020-02-04 Jonathan Wakely <jwakely@redhat.com>
973
9bc5bea1
JW
974 * include/std/functional (_GLIBCXX_NOT_FN_CALL_OP): Un-define after
975 use.
976
9962493c
JW
977 PR libstdc++/93562
978 * include/bits/unique_ptr.h (__uniq_ptr_impl::swap): Define.
979 (unique_ptr::swap, unique_ptr<T[], D>::swap): Call it.
980 * testsuite/20_util/unique_ptr/modifiers/93562.cc: New test.
981
20fa702b
AB
9822020-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
983
984 * configure: Regenerate.
985
6e5a1963
PP
9862020-01-31 Patrick Palka <ppalka@redhat.com>
987
988 * testsuite/24_iterators/range_operations/distance.cc: Do not assume
989 test_range::end() returns the same type as test_range::begin().
990 * testsuite/24_iterators/range_operations/next.cc: Likewise.
991 * testsuite/24_iterators/range_operations/prev.cc: Likewise.
992 * testsuite/util/testsuite_iterators.h (__gnu_test::test_range::end):
993 Always return a sentinel<I>.
994
5cd2e126
JW
9952020-01-29 Jonathan Wakely <jwakely@redhat.com>
996
0a8f4feb
JW
997 PR libstdc++/92895
998 * include/std/stop_token (stop_token::stop_possible()): Call new
999 _M_stop_possible() function.
1000 (stop_token::stop_requested()): Do not use stop_possible().
1001 (stop_token::binary_semaphore): New class, as temporary stand-in for
1002 std::binary_semaphore.
1003 (stop_token::_Stop_cb::_M_callback): Add noexcept to type.
1004 (stop_token::_Stop_cb::_M_destroyed, stop_token::_Stop_cb::_M_done):
1005 New data members for symchronization with stop_callback destruction.
1006 (stop_token::_Stop_cb::_Stop_cb): Make non-template.
1007 (stop_token::_Stop_cb::_M_linked, stop_token::_Stop_cb::_S_execute):
1008 Remove.
1009 (stop_token::_Stop_cb::_M_run): New member function.
1010 (stop_token::_Stop_state::_M_stopped, stop_token::_Stop_state::_M_mtx):
1011 Remove.
1012 (stop_token::_Stop_state::_M_owners): New data member to track
1013 reference count for ownership.
1014 (stop_token::_Stop_state::_M_value): New data member combining a
1015 spinlock, the stop requested flag, and the reference count for
1016 associated stop_source objects.
1017 (stop_token::_Stop_state::_M_requester): New data member for
1018 synchronization with stop_callback destruction.
1019 (stop_token::_Stop_state::_M_stop_possible()): New member function.
1020 (stop_token::_Stop_state::_M_stop_requested()): Inspect relevant bit
1021 of _M_value.
1022 (stop_token::_Stop_state::_M_add_owner)
1023 (stop_token::_Stop_state::_M_release_ownership)
1024 (stop_token::_Stop_state::_M_add_ssrc)
1025 (stop_token::_Stop_state::_M_sub_ssrc): New member functions for
1026 updating reference counts.
1027 (stop_token::_Stop_state::_M_lock, stop_token::_Stop_state::_M_unlock)
1028 (stop_token::_Stop_state::_M_lock, stop_token::_Stop_state::_M_unlock)
1029 (stop_token::_Stop_state::_M_try_lock)
1030 (stop_token::_Stop_state::_M_try_lock_and_stop)
1031 (stop_token::_Stop_state::_M_do_try_lock): New member functions for
1032 managing spinlock.
1033 (stop_token::_Stop_state::_M_request_stop): Use atomic operations to
1034 read and update state. Release lock while running callbacks. Use new
1035 data members to synchronize with callback destruction.
1036 (stop_token::_Stop_state::_M_remove_callback): Likewise.
1037 (stop_token::_Stop_state::_M_register_callback): Use atomic operations
1038 to read and update state.
1039 (stop_token::_Stop_state_ref): Handle type to manage _Stop_state,
1040 replacing shared_ptr.
1041 (stop_source::stop_source(const stop_source&)): Update reference count.
1042 (stop_source::operator=(const stop_source&)): Likewise.
1043 (stop_source::~stop_source()): Likewise.
1044 (stop_source::stop_source(stop_source&&)): Define as defaulted.
1045 (stop_source::operator=(stop_source&&)): Establish postcondition on
1046 parameter.
1047 (stop_callback): Enforce preconditions on template parameter. Replace
1048 base class with data member of new _Cb_impl type.
1049 (stop_callback::stop_callback(const stop_token&, Cb&&))
1050 (stop_callback::stop_callback(stop_token&&, Cb&&)): Fix TOCTTOU race.
1051 (stop_callback::_Cb_impl): New type wrapping _Callback member and
1052 defining the _S_execute member function.
1053 * testsuite/30_threads/stop_token/stop_callback/deadlock-mt.cc: New
1054 test.
1055 * testsuite/30_threads/stop_token/stop_callback/deadlock.cc: New test.
1056 * testsuite/30_threads/stop_token/stop_callback/destroy.cc: New test.
1057 * testsuite/30_threads/stop_token/stop_callback/destructible_neg.cc:
1058 New test.
1059 * testsuite/30_threads/stop_token/stop_callback/invocable_neg.cc: New
1060 test.
1061 * testsuite/30_threads/stop_token/stop_callback/invoke.cc: New test.
1062 * testsuite/30_threads/stop_token/stop_source/assign.cc: New test.
1063 * testsuite/30_threads/stop_token/stop_token/stop_possible.cc: New
1064 test.
1065
f214ffb3
JW
1066 * libsupc++/compare (__detail::__3way_builtin_ptr_cmp): Use
1067 three_way_comparable_with.
1068 (__detail::__3way_cmp_with): Remove workaround for fixed bug.
1069 (compare_three_way::operator()): Remove redundant constraint from
1070 requires-clause.
1071 (__detail::_Synth3way::operator()): Use three_way_comparable_with
1072 instead of workaround.
1073 * testsuite/18_support/comparisons/object/93479.cc: Prune extra
1074 output due to simplified constraints on compare_three_way::operator().
1075
83b02010
JW
1076 PR libstdc++/93479
1077 * libsupc++/compare (__3way_builtin_ptr_cmp): Require <=> to be valid.
1078 * testsuite/18_support/comparisons/object/93479.cc: New test.
1079
5cd2e126
JW
1080 * testsuite/std/ranges/access/end.cc: Do not assume test_range::end()
1081 returns the same type as test_range::begin(). Add comments.
1082 * testsuite/std/ranges/access/rbegin.cc: Likewise.
1083 * testsuite/std/ranges/access/rend.cc: Likewise.
1084 * testsuite/std/ranges/range.cc: Do not assume the sentinel for
1085 test_range is the same as its iterator type.
1086 * testsuite/util/testsuite_iterators.h (test_range::sentinel): Add
1087 operator- overloads to satisfy sized_sentinel_for when the iterator
1088 satisfies random_access_iterator.
1089
759812fd
JW
10902020-01-28 Jonathan Wakely <jwakely@redhat.com>
1091
72a9fd20
JW
1092 PR libstdc++/93470
1093 * include/bits/refwrap.h (reference_wrapper::operator()): Restrict
1094 static assertion to object types.
1095
759812fd
JW
1096 PR libstdc++/93325
1097 * acinclude.m4 (GLIBCXX_ENABLE_LIBSTDCXX_TIME): Use AC_SEARCH_LIBS for
1098 clock_gettime instead of explicit glibc version check.
1099 * configure: Regenerate.
1100
a5d81aaa
JW
11012020-01-28 Martin Liska <mliska@suse.cz>
1102
1103 PR libstdc++/93478
1104 * include/std/atomic: Fix typo.
1105 * include/std/optional: Likewise.
1106
11072020-01-27 Andrew Burgess <andrew.burgess@embecosm.com>
1108
1109 * configure: Regenerate.
1110
389cd88c
JW
11112020-01-27 Jonathan Wakely <jwakely@redhat.com>
1112
1113 PR libstdc++/93426
1114 * include/std/span (span): Fix deduction guide.
1115 * testsuite/23_containers/span/deduction.cc: New test.
1116
482eeff5
JW
11172020-01-24 Jonathan Wakely <jwakely@redhat.com>
1118
1119 * libsupc++/compare (__cmp_cat::_Eq): Remove enumeration type.
1120 (__cmp_cat::_Ord::equivalent): Add enumerator.
1121 (__cmp_cat::_Ord::_Less, __cmp_cat::_Ord::_Greater): Rename to less
1122 and greater.
1123 (partial_ordering, weak_ordering, strong_ordering): Remove
1124 constructors taking __cmp_cat::_Eq parameters. Use renamed
1125 enumerators.
1126
e8e66971
MR
11272020-01-24 Maciej W. Rozycki <macro@wdc.com>
1128
1129 * acinclude.m4: Handle `--with-toolexeclibdir='.
1130 * Makefile.in: Regenerate.
1131 * aclocal.m4: Regenerate.
1132 * configure: Regenerate.
1133 * doc/Makefile.in: Regenerate.
1134 * include/Makefile.in: Regenerate.
1135 * libsupc++/Makefile.in: Regenerate.
1136 * po/Makefile.in: Regenerate.
1137 * python/Makefile.in: Regenerate.
1138 * src/Makefile.in: Regenerate.
1139 * src/c++11/Makefile.in: Regenerate.
1140 * src/c++17/Makefile.in: Regenerate.
1141 * src/c++98/Makefile.in: Regenerate.
1142 * src/filesystem/Makefile.in: Regenerate.
1143 * testsuite/Makefile.in: Regenerate.
1144
7a900bce
AO
11452020-01-23 Alexandre Oliva <oliva@adacore.com>
1146
f9e84b31
AO
1147 * crossconfig.m4 (GLIBCXX_CHECK_MATH_DECL): Reject macros.
1148 * configure: Rebuild.
1149
7a900bce
AO
1150 * testsuite/27_io/fpos/mbstate_t/1.cc: Zero-init mbstate_t.
1151
04681fca
JW
11522020-01-23 Jonathan Wakely <jwakely@redhat.com>
1153
1154 PR libstdc++/91947
1155 * include/Makefile.am (${host_builddir}/largefile-config.h): Simplify
1156 rule.
1157 * include/Makefile.in: Regenerate.
1158
c784f162
JW
11592020-01-20 Jonathan Wakely <jwakely@redhat.com>
1160
1161 * doc/xml/faq.xml: Fix grammar.
1162 * doc/xml/manual/appendix_contributing.xml: Improve instructions.
1163 * doc/xml/manual/spine.xml: Update copyright years.
1164 * doc/html/*: Regenerate.
1165
f4d83eba
ER
11662020-01-19 Eric S. Raymond <esr@thyrsus.com>
1167
1168 * doc/xml/faq.xml: Update for SVN -> Git transition.
1169 * doc/xml/manual/appendix_contributing.xml: Likewise.
1170 * doc/xml/manual/status_cxx1998.xml: Likewise.
1171 * doc/xml/manual/status_cxx2011.xml: Likewise.
1172 * doc/xml/manual/status_cxx2014.xml: Likewise.
1173 * doc/xml/manual/status_cxx2017.xml: Likewise.
1174 * doc/xml/manual/status_cxx2020.xml: Likewise.
1175 * doc/xml/manual/status_cxxtr1.xml: Likewise.
1176 * doc/xml/manual/status_cxxtr24733.xml: Likewise.
1177
49789fd0
IS
11782020-01-18 Iain Sandoe <iain@sandoe.co.uk>
1179
1180 * include/Makefile.am: Add coroutine to the std set.
1181 * include/Makefile.in: Regenerated.
1182 * include/std/coroutine: New file.
1183
0ba6a850
JW
11842020-01-17 Jonathan Wakely <jwakely@redhat.com>
1185
1186 PR libstdc++/92376
1187 * include/bits/c++config: Only do PSTL config when the header is
1188 present, to fix freestanding.
1189 * libsupc++/new_opa.cc [!_GLIBCXX_HOSTED]: Declare allocation
1190 functions if they were detected by configure.
1191
98d56ea8
JW
11922020-01-16 Kai-Uwe Eckhardt <kuehro@gmx.de>
1193 Matthew Bauer <mjbauer95@gmail.com>
1194 Jonathan Wakely <jwakely@redhat.com>
1195
1196 PR bootstrap/64271 (partial)
1197 * config/os/bsd/netbsd/ctype_base.h (ctype_base::mask): Change type
1198 to unsigned short.
1199 (ctype_base::alpha, ctype_base::digit, ctype_base::xdigit)
1200 (ctype_base::print, ctype_base::graph, ctype_base::alnum): Sync
1201 definitions with NetBSD upstream.
1202 (ctype_base::blank): Use _CTYPE_BL.
1203 * config/os/bsd/netbsd/ctype_configure_char.cc (_C_ctype_): Remove
1204 Declaration.
1205 (ctype<char>::classic_table): Use _C_ctype_tab_ instead of _C_ctype_.
1206 (ctype<char>::do_toupper, ctype<char>::do_tolower): Cast char
1207 parameters to unsigned char.
1208 * config/os/bsd/netbsd/ctype_inline.h (ctype<char>::is): Likewise.
1209
d9165389
FD
12102020-01-16 François Dumont <fdumont@gcc.gnu.org>
1211
1212 PR libstdc++/91263
1213 * include/bits/hashtable.h (_Hashtable<>): Make _Equality<> friend.
1214 * include/bits/hashtable_policy.h: Include <bits/stl_algo.h>.
1215 (_Equality_base): Remove.
1216 (_Equality<>::_M_equal): Review implementation. Use
1217 std::is_permutation.
1218 * testsuite/23_containers/unordered_multiset/operators/1.cc
1219 (Hash, Equal, test02, test03): New.
1220 * testsuite/23_containers/unordered_set/operators/1.cc
1221 (Hash, Equal, test02, test03): New.
1222
2a0f6c61
JW
12232020-01-15 Jonathan Wakely <jwakely@redhat.com>
1224
1225 PR libstdc++/93267
1226 * include/bits/iterator_concepts.h (__max_diff_type, __max_size_type):
1227 Move here from <bits/range_access.h> and define using __int128 when
1228 available.
1229 (__is_integer_like, __is_signed_integer_like): Move here from
1230 <bits/range_access.h>.
1231 (weakly_incrementable): Use __is_signed_integer_like.
1232 * include/bits/range_access.h (__max_diff_type, __max_size_type)
1233 (__is_integer_like, __is_signed_integer_like): Move to
1234 <bits/iterator_concepts.h>.
1235 (__make_unsigned_like_t): Move here from <ranges>.
1236 * include/std/ranges (__make_unsigned_like_t): Move to
1237 <bits/range_access.h>.
1238 (iota_view): Replace using-directive with using-declarations.
1239 * testsuite/std/ranges/iota/93267.cc: New test.
1240 * testsuite/std/ranges/iota_view.cc: Move to new 'iota' sub-directory.
1241
e4379a93
JW
12422020-01-13 Jonathan Wakely <jwakely@redhat.com>
1243
fe7cc34f
JW
1244 PR libstdc++/93244
1245 * include/bits/fs_path.h (path::generic_string<C,A>)
1246 [_GLIBCXX_FILESYSTEM_IS_WINDOWS]: Convert root-dir to forward-slash.
1247 * testsuite/27_io/filesystem/path/generic/generic_string.cc: Check
1248 root-dir is converted to forward slash in generic pathname.
1249 * testsuite/27_io/filesystem/path/generic/utf.cc: New test.
1250 * testsuite/27_io/filesystem/path/generic/wchar_t.cc: New test.
1251
e4379a93
JW
1252 PR libstdc++/58605
1253 * include/bits/atomic_base.h (__cpp_lib_atomic_value_initialization):
1254 Define.
1255 (__atomic_flag_base, __atomic_base, __atomic_base<_PTp*>)
1256 (__atomic_float): Add default member initializer for C++20.
1257 * include/std/atomic (atomic): Likewise.
1258 (atomic::atomic()): Remove noexcept-specifier on default constructor.
1259 * include/std/version (__cpp_lib_atomic_value_initialization): Define.
1260 * testsuite/29_atomics/atomic/cons/assign_neg.cc: Adjust dg-error line
1261 number.
1262 * testsuite/29_atomics/atomic/cons/copy_neg.cc: Likewise.
1263 * testsuite/29_atomics/atomic/cons/value_init.cc: New test.
1264 * testsuite/29_atomics/atomic_flag/cons/value_init.cc: New test.
1265 * testsuite/29_atomics/atomic_flag/requirements/trivial.cc: Adjust
1266 expected result for is_trivially_default_constructible.
1267 * testsuite/29_atomics/atomic_float/requirements.cc: Likewise.
1268 * testsuite/29_atomics/atomic_float/value_init.cc: New test.
1269 * testsuite/29_atomics/atomic_integral/cons/assign_neg.cc: Likewise.
1270 * testsuite/29_atomics/atomic_integral/cons/copy_neg.cc: Likewise.
1271 * testsuite/29_atomics/atomic_integral/cons/value_init.cc
1272 * testsuite/29_atomics/atomic_integral/requirements/trivial.cc: Adjust
1273 expected results for is_trivially_default_constructible.
1274 * testsuite/util/testsuite_common_types.h (has_trivial_dtor): Add
1275 new test generator.
1276
7918cb93
JW
12772020-01-10 Jonathan Wakely <jwakely@redhat.com>
1278
68be73fc
JW
1279 * testsuite/util/testsuite_iterators.h: Improve comment.
1280
78f02e80
JW
1281 * testsuite/25_algorithms/equal/deque_iterators/1.cc: Don't use C++11
1282 initialization syntax.
1283
7918cb93
JW
1284 PR libstdc++/92285
1285 * include/bits/streambuf_iterator.h (istreambuf_iterator): Make type
1286 of base class independent of __cplusplus value.
1287 [__cplusplus < 201103L] (istreambuf_iterator::reference): Override the
1288 type defined in the base class
1289 * testsuite/24_iterators/istreambuf_iterator/92285.cc: New test.
1290 * testsuite/24_iterators/istreambuf_iterator/requirements/
1291 base_classes.cc: Adjust expected base class for C++98.
1292
acd43917
OH
12932020-01-09 Olivier Hainque <hainque@adacore.com>
1294
1295 * doc/xml/manual/appendix_contributing.xml: Document _C2
1296 as a reserved identifier, by VxWorks.
1297 * include/bits/stl_map.h: Rename _C2 template typenames as _Cmp2.
1298 * include/bits/stl_multimap.h: Likewise.
1299
caa39b2e
JW
13002020-01-09 Jonathan Wakely <jwakely@redhat.com>
1301
1a788638
JW
1302 * include/ext/extptr_allocator.h (_ExtPtr_allocator::operator==)
1303 (_ExtPtr_allocator::operator!=): Add missing const qualifiers.
1304 * include/ext/pointer.h (readable_traits<_Pointer_adapter<S>>): Add
1305 partial specialization to disambiguate the two constrained
1306 specializations.
1307
caa39b2e
JW
1308 * include/experimental/type_traits (experimental::is_pod_v): Disable
1309 -Wdeprecated-declarations warnings around reference to std::is_pod.
1310 * include/std/type_traits (is_pod_v): Likewise.
1311 * testsuite/18_support/max_align_t/requirements/2.cc: Also check
1312 is_standard_layout and is_trivial. Do not check is_pod for C++20.
1313 * testsuite/20_util/is_pod/requirements/explicit_instantiation.cc:
1314 Add -Wno-deprecated for C++20.
1315 * testsuite/20_util/is_pod/requirements/typedefs.cc: Likewise.
1316 * testsuite/20_util/is_pod/value.cc: Likewise.
1317 * testsuite/experimental/type_traits/value.cc: Likewise.
1318
1a6c5064
JTM
13192020-01-09 JeanHeyd "ThePhD" Meneide <phdofthehouse@gmail.com>
1320
1321 * include/bits/c++config (_GLIBCXX20_DEPRECATED): Add new macro.
1322 * include/std/type_traits (is_pod, is_pod_v): Deprecate for C++20.
1323 * testuite/20_util/is_pod/deprecated-2a.cc: New test.
1324
d574c8aa
JW
13252020-01-09 Jonathan Wakely <jwakely@redhat.com>
1326
160e95dc
JW
1327 PR libstdc++/93205
1328 * include/bits/random.h (operator>>): Check stream operation succeeds.
1329 * include/bits/random.tcc (operator<<): Remove redundant __ostream_type
1330 typedefs.
1331 (operator>>): Remove redundant __istream_type typedefs. Check stream
1332 operations succeed.
1333 (__extract_params): New function to fill a vector from a stream.
1334 * testsuite/26_numerics/random/pr60037-neg.cc: Adjust dg-error line.
1335
d574c8aa
JW
1336 PR libstdc++/93208
1337 * config/abi/pre/gnu.ver: Add new exports.
1338 * include/std/memory_resource (memory_resource::~memory_resource()):
1339 Do not define inline.
1340 (monotonic_buffer_resource::~monotonic_buffer_resource()): Likewise.
1341 * src/c++17/memory_resource.cc (memory_resource::~memory_resource()):
1342 Define.
1343 (monotonic_buffer_resource::~monotonic_buffer_resource()): Define.
1344 * testsuite/20_util/monotonic_buffer_resource/93208.cc: New test.
1345
b9c84e95
FD
13462020-01-09 François Dumont <fdumont@gcc.gnu.org>
1347
1348 PR libstdc++/92124
1349 * include/bits/hashtable.h (_Hashtable<>::__alloc_node_gen_t): New
1350 template alias.
1351 (_Hashtable<>::__fwd_value_for): New.
1352 (_Hashtable<>::_M_assign_elements<>): Remove _NodeGenerator template
1353 parameter.
1354 (_Hashtable<>::_M_assign<>): Add _Ht template parameter.
1355 (_Hashtable<>::operator=(const _Hashtable<>&)): Adapt.
1356 (_Hashtable<>::_M_move_assign): Adapt. Replace std::move_if_noexcept
1357 with std::move.
1358 (_Hashtable<>::_Hashtable(const _Hashtable&)): Adapt.
1359 (_Hashtable<>::_Hashtable(const _Hashtable&, const allocator_type&)):
1360 Adapt.
1361 (_Hashtable<>::_Hashtable(_Hashtable&&, const allocator_type&)):
1362 Adapt.
1363 * testsuite/23_containers/unordered_set/92124.cc: New.
1364
fff148b7
JW
13652020-01-08 Jonathan Wakely <jwakely@redhat.com>
1366
1367 PR libstdc++/93201
1368 * src/c++17/fs_ops.cc (do_remove_all): New function implementing more
1369 detailed error reporting for remove_all. Check result of recursive
1370 call before incrementing iterator.
1371 (remove_all(const path&), remove_all(const path&, error_code&)): Use
1372 do_remove_all.
1373 * src/filesystem/ops.cc (remove_all(const path&, error_code&)): Check
1374 result of recursive call before incrementing iterator.
1375 * testsuite/27_io/filesystem/operations/remove_all.cc: Check errors
1376 are reported correctly.
1377 * testsuite/experimental/filesystem/operations/remove_all.cc: Likewise.
1378
9e3c1eb7
TR
13792020-01-07 Thomas Rodgers <trodgers@redhat.com>
1380
1381 * include/std/condition_variable
1382 (condition_variable_any::wait_on): Rename to match current draft
1383 standard.
1384 (condition_variable_any::wait_on_until): Likewise.
1385 (condition_variable_any::wait_on_for): Likewise.
1386 * testsuite/30_threads/condition_variable_any/stop_token/wait_on.cc:
1387 Adjust tests to account for renamed methods.
1388
6af8819b
FD
13892020-01-07 François Dumont <fdumont@gcc.gnu.org>
1390
1391 PR libstdc++/92124
1392 * include/bits/stl_tree.h
1393 (_Rb_tree<>::_M_move_assign(_Rb_tree&, false_type)): Replace
1394 std::move_if_noexcept by std::move.
1395 * testsuite/23_containers/map/92124.cc: New.
1396 * testsuite/23_containers/set/92124.cc: New.
1397
f31a99f7
JW
13982020-01-06 Jonathan Wakely <jwakely@redhat.com>
1399
a4a1f965
JW
1400 * include/std/stop_token (stop_token): Remove operator!= (LWG 3254).
1401 (stop_source): Likewise (LWG 3362).
1402 * testsuite/30_threads/stop_token/stop_source.cc: Test equality
1403 comparisons.
1404
f31a99f7
JW
1405 * include/bits/stl_algobase.h (__is_byte_iter, __min_cmp)
1406 (lexicographical_compare_three_way): Do not depend on
1407 __cpp_lib_concepts.
1408 * include/std/version (__cpp_lib_three_way_comparison): Only define
1409 when __cpp_lib_concepts is defined.
1410 * libsupc++/compare (__cpp_lib_three_way_comparison): Likewise.
1411
b4e70137
JW
14122020-01-03 Jonathan Wakely <jwakely@redhat.com>
1413
1414 * include/bits/stl_algobase.h (lexicographical_compare_three_way):
1415 Only define four-argument overload when __cpp_lib_concepts is defined.
1416
a8497ec6
JDA
14172020-01-01 John David Anglin <danglin@gcc.gnu.org>
1418
1419 * config/abi/post/hppa-linux-gnu/baseline_symbols.txt: Update.
1420
8d9254fc 14212020-01-01 Jakub Jelinek <jakub@redhat.com>
5624e564
JJ
1422
1423 Update copyright years.
b4df5e92 1424\f
8d9254fc 1425Copyright (C) 2020 Free Software Foundation, Inc.
b4df5e92
JW
1426
1427Copying and distribution of this file, with or without modification,
1428are permitted in any medium without royalty provided the copyright
1429notice and this notice are preserved.