diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-10-16 00:16:25 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2022-10-16 00:16:25 +0000 |
commit | 8f605de98de65262c0d3e81064b5bc708fed8f5c (patch) | |
tree | 431307a543de529f841f772b8dd825612313425d | |
parent | 030a08c857204909641b0fdc47ba3066f48de404 (diff) | |
download | gcc-8f605de98de65262c0d3e81064b5bc708fed8f5c.zip gcc-8f605de98de65262c0d3e81064b5bc708fed8f5c.tar.gz gcc-8f605de98de65262c0d3e81064b5bc708fed8f5c.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | libstdc++-v3/ChangeLog | 31 |
2 files changed, 32 insertions, 1 deletions
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 88e8f3f..f791a3c 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20221015 +20221016 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8166bc9..9ff3e3f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,34 @@ +2022-10-15 Jonathan Wakely <jwakely@redhat.com> + + * src/c++11/debug.cc (print_raw): Move inside #if block. + +2022-10-15 Jonathan Wakely <jwakely@redhat.com> + + * include/bits/charconv.h (__to_chars_10_impl): Add constexpr + for C++23. Remove 'static' from array. + * include/std/charconv (__cpp_lib_constexpr_charconv): Define. + (__to_chars, __to_chars_16): Remove 'static' from array, add + constexpr. + (__to_chars_10, __to_chars_8, __to_chars_2, __to_chars_i) + (to_chars, __raise_and_add, __from_chars_pow2_base) + (__from_chars_alnum, from_chars): Add constexpr. + (__from_chars_alnum_to_val): Avoid local static during constant + evaluation. Add constexpr. + * include/std/version (__cpp_lib_constexpr_charconv): Define. + * testsuite/20_util/from_chars/constexpr.cc: New test. + * testsuite/20_util/to_chars/constexpr.cc: New test. + * testsuite/20_util/to_chars/version.cc: New test. + +2022-10-15 Jonathan Wakely <jwakely@redhat.com> + + * include/bits/stl_map.h (map::insert(Pair&&)): Use + remove_const_t on argument to __is_pair. + * include/bits/stl_pair.h (__is_pair<const pair<T,U>>): Remove + partial specialization. + * include/bits/uses_allocator_args.h (_Std_pair): Use + remove_cv_t as per LWG 3677. + * testsuite/20_util/uses_allocator/lwg3677.cc: New test. + 2022-10-14 Jonathan Wakely <jwakely@redhat.com> * libsupc++/eh_alloc.cc [USE_POOL]: New macro. |