diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2011-12-10 15:33:06 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2011-12-10 15:33:06 +0000 |
commit | 7897a1c0294162b5fedef308588f3f354199fd04 (patch) | |
tree | e6d319a34c20e02ef1eb28aaabdfa2d5a90fc331 /libstdc++-v3/scripts/run_doxygen | |
parent | f431d7ca38c9607e6bf90b63b348c8186b984480 (diff) | |
download | gcc-7897a1c0294162b5fedef308588f3f354199fd04.zip gcc-7897a1c0294162b5fedef308588f3f354199fd04.tar.gz gcc-7897a1c0294162b5fedef308588f3f354199fd04.tar.bz2 |
user.cfg.in: Add macros, directories.
2011-12-10 Benjamin Kosnik <bkoz@redhat.com>
* doc/doxygen/user.cfg.in: Add macros, directories.
* include/bits/locale_classes.h: Remove doxygen warnings, fix markup.
* include/bits/locale_classes.tcc: Same.
* include/bits/shared_ptr.h: Same.
* include/bits/stl_algo.h: Same.
* include/bits/stl_list.h: Same.
* include/bits/stl_numeric.h: Same.
* include/debug/safe_base.h: Same.
* include/parallel/equally_split.h: Same.
* include/std/bitset: Same.
* include/std/complex: Same.
* include/std/fstream: Same.
* include/std/istream: Same.
* include/std/ostream: Same.
* include/tr2/dynamic_bitset: Same.
* scripts/run_doxygen: Remove munging for names that no longer exist.
* testsuite/23_containers/list/requirements/dr438/assign_neg.cc:
Adjust line numbers.
* testsuite/23_containers/list/requirements/dr438/
constructor_1_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/
constructor_2_neg.cc: Same.
* testsuite/23_containers/list/requirements/dr438/insert_neg.cc: Same.
From-SVN: r182189
Diffstat (limited to 'libstdc++-v3/scripts/run_doxygen')
-rw-r--r-- | libstdc++-v3/scripts/run_doxygen | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libstdc++-v3/scripts/run_doxygen b/libstdc++-v3/scripts/run_doxygen index af2d0fc..45b3f4a 100644 --- a/libstdc++-v3/scripts/run_doxygen +++ b/libstdc++-v3/scripts/run_doxygen @@ -325,14 +325,6 @@ for f in *__profile_*; do newname=`echo $f | sed 's/__profile_/__profile::/'` mv $f $newname done -for f in *__atomic0_*; do - newname=`echo $f | sed 's/__atomic0_/__atomic0::/'` - mv $f $newname -done -for f in *__atomic2_*; do - newname=`echo $f | sed 's/__atomic2_/__atomic2::/'` - mv $f $newname -done # Then, clean up other top-level namespaces. for f in std_tr1_*; do @@ -373,11 +365,6 @@ for f in __cxxabiv1_*; do done # Then piecemeal nested classes -for f in *__future_base_*; do - newname=`echo $f | sed 's/__future_base_/__future_base::/'` - mv $f $newname -done - # Generic removal bits, where there are things in the generated man |