mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
62dec39dbd6724b256ede90be0764b09428827d1
Jakub wrote a plugin which identified some non-reserved names being used in our headers. The "count" one is actually a reserved name (there's std::set::count and std::count and std::bitset::count) but we might as well uglify it when used as a function parameter name. I think the "ext" ones must have happened when moving function definitions from fs_path.cc to fs_path.h and I forgot to change them. The __cond::wait and __cond::wait_recursive member functions are using non-reserved names, so that should be changed too, but this patch doesn't fix that. I don't think we use the __gnu_cxx::__cond type in any headers, so maybe that should just be moved into libsupc++/guard.cc or a new header which is not installed and only used while building the library. libstdc++-v3/ChangeLog: * include/bits/chrono_io.h (__formatter_duration::_S_subseconds): Uglify subs variable name. * include/bits/fs_path.h (path::stem, path::extension) (path::has_stem, path::has_extension): Uglify ext parameter name. * include/ext/concurrence.h (__cond::wait, __cond::wait_recursive): Uglify mutex parameter names. * include/pstl/glue_algorithm_defs.h (generate_n): Uglify count parameter name. * include/std/ranges (zip_transform_view): Uglify Rs template parameter name. (__cartesian_is_sized_sentinel): Uglify FirstSent template parameter name. * include/tr1/riemann_zeta.tcc: Uglify max_size variable name.
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
…
This directory contains the GNU Compiler Collection (GCC). The GNU Compiler Collection is free software. See the files whose names start with COPYING for copying permission. The manuals, and some of the runtime libraries, are under different terms; see the individual source files for details. The directory INSTALL contains copies of the installation information as HTML and plain text. The source of this information is gcc/doc/install.texi. The installation information includes details of what is included in the GCC sources and what files GCC installs. See the file gcc/doc/gcc.texi (together with other files that it includes) for usage and porting information. An online readable version of the manual is in the files gcc/doc/gcc.info*. See http://gcc.gnu.org/bugs/ for how to report bugs usefully. Copyright years on GCC source files may be listed using range notation, e.g., 1987-2012, indicating that every year in the range, inclusive, is a copyrightable year that could otherwise be listed individually.
Description
Languages
C++
30.7%
C
30.2%
Ada
14.4%
D
6.1%
Go
5.7%
Other
12.4%