From 1a456495015d3be8d49751031ce58b4991ab6f50 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 17 Oct 2019 16:40:04 +0100 Subject: [PATCH] Process new C++17 and C++20 headers with Doxygen This won't do anything by default, because __cplusplus is set to 201402L when Doxygen runs. If/when that changes, these headers should be processed. * doc/doxygen/user.cfg.in (INPUT): Add new C++17 and C++20 headers. From-SVN: r277121 --- libstdc++-v3/ChangeLog | 2 ++ libstdc++-v3/doc/doxygen/user.cfg.in | 13 ++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 324955c692a..1aeeb880a69 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,7 @@ 2019-10-17 Jonathan Wakely + * doc/doxygen/user.cfg.in (INPUT): Add new C++17 and C++20 headers. + * include/Makefile.am: Add new header. * include/Makefile.in: Regenerate. * include/bits/range_cmp.h: New header for C++20 function objects. diff --git a/libstdc++-v3/doc/doxygen/user.cfg.in b/libstdc++-v3/doc/doxygen/user.cfg.in index dc493998a1a..3c0295d99a5 100644 --- a/libstdc++-v3/doc/doxygen/user.cfg.in +++ b/libstdc++-v3/doc/doxygen/user.cfg.in @@ -793,14 +793,19 @@ INPUT = @srcdir@/doc/doxygen/doxygroups.cc \ @srcdir@/libsupc++/new \ @srcdir@/libsupc++/typeinfo \ include/algorithm \ + include/any \ include/array \ include/atomic \ + include/bit \ include/bitset \ + include/charconv \ include/chrono \ - include/complex \ include/codecvt \ + include/complex \ + include/concepts \ include/condition_variable \ include/deque \ + include/filesystem \ include/forward_list \ include/fstream \ include/functional \ @@ -816,8 +821,11 @@ INPUT = @srcdir@/doc/doxygen/doxygroups.cc \ include/locale \ include/map \ include/memory \ + include/memory_resource \ include/mutex \ include/numeric \ + include/numbers \ + include/optional \ include/ostream \ include/queue \ include/random \ @@ -826,11 +834,13 @@ INPUT = @srcdir@/doc/doxygen/doxygroups.cc \ include/scoped_allocator \ include/set \ include/shared_mutex \ + include/span \ include/sstream \ include/stack \ include/stdexcept \ include/streambuf \ include/string \ + include/string_view \ include/system_error \ include/thread \ include/tuple \ @@ -840,6 +850,7 @@ INPUT = @srcdir@/doc/doxygen/doxygroups.cc \ include/unordered_set \ include/utility \ include/valarray \ + include/variant \ include/vector \ include/cassert \ include/ccomplex \ -- 2.30.2