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
This commit is contained in:
parent
da8ddcec0c
commit
1a45649501
2 changed files with 14 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2019-10-17 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* 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.
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Add table
Reference in a new issue