[committed] libstdc++: Fix non-reserved names in

2023-02-16 Thread Jonathan Wakely via Gcc-patches
Tested powerpc64le-linux. Pushed to trunk. -- >8 -- libstdc++-v3/ChangeLog: * include/ext/throw_allocator.h: Use reserved names for parameters. --- libstdc++-v3/include/ext/throw_allocator.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3

[committed] libstdc++: Fix non-reserved names in PSTL headers

2023-02-16 Thread Jonathan Wakely via Gcc-patches
Tested x86_64-linux. Pushed to trunk. -- >8 -- libstdc++-v3/ChangeLog: * include/pstl/algorithm_fwd.h (__pattern_search_n) (__brick_unique_copy, __brick_adjacent_find) (__brick_generate_n, __pattern_generate_n): Use reserved names for parameters. * include

[committed] libstdc++: Fix non-reserved names in

2021-08-25 Thread Jonathan Wakely via Gcc-patches
Signed-off-by: Jonathan Wakely libstdc++-v3/ChangeLog: * include/std/valarray: Uglify 'func' parameters. * testsuite/17_intro/names.cc: Add 'func' to checks. Tested powerpc64le-linux. Committed to trunk. commit 0163bbaaef119ef9e98c4b3dcba159609f77c818 Author: Jonathan Wakely D

[committed] libstdc++: Fix non-reserved names in headers

2020-10-07 Thread Jonathan Wakely via Gcc-patches
My recent changes to std::exception_ptr moved some members to be inline in the header but didn't replace the variable names with reserved names. The "tmp" variable must be fixed. The "other" parameter is actually a reserved name because of std::allocator::rebind::other but should be fixed anyway.