diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-11-08 00:37:17 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-11-08 00:37:17 +0000 |
commit | 3d6e7aa95cf3b354dded4cb1a8c546cbe217beb9 (patch) | |
tree | 7035e2bd8843891e432f717dd96121d5a1812c12 | |
parent | 29669521665c5e82a8548ef0a7f642634a042d48 (diff) | |
download | gcc-3d6e7aa95cf3b354dded4cb1a8c546cbe217beb9.zip gcc-3d6e7aa95cf3b354dded4cb1a8c546cbe217beb9.tar.gz gcc-3d6e7aa95cf3b354dded4cb1a8c546cbe217beb9.tar.bz2 |
libsupc++: add <compare> to precompiled header
Also process it with Doxygen.
* doc/doxygen/user.cfg.in (INPUT): Add <compare> header.
* include/precompiled/stdc++.h: Include <compare> header.
From-SVN: r277944
-rw-r--r-- | libstdc++-v3/ChangeLog | 3 | ||||
-rw-r--r-- | libstdc++-v3/doc/doxygen/user.cfg.in | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/precompiled/stdc++.h | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 65e55d0..c4a3b83 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,8 @@ 2019-11-07 Jonathan Wakely <jwakely@redhat.com> + * doc/doxygen/user.cfg.in (INPUT): Add <compare> header. + * include/precompiled/stdc++.h: Include <compare> header. + * libsupc++/compare (common_comparison_category) (common_comparison_category_t): Define for C++20. * testsuite/18_support/comparisons/common/1.cc: New test. diff --git a/libstdc++-v3/doc/doxygen/user.cfg.in b/libstdc++-v3/doc/doxygen/user.cfg.in index 4200101..1899470 100644 --- a/libstdc++-v3/doc/doxygen/user.cfg.in +++ b/libstdc++-v3/doc/doxygen/user.cfg.in @@ -787,6 +787,7 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = @srcdir@/doc/doxygen/doxygroups.cc \ + @srcdir@/libsupc++/compare \ @srcdir@/libsupc++/cxxabi.h \ @srcdir@/libsupc++/exception \ @srcdir@/libsupc++/initializer_list \ diff --git a/libstdc++-v3/include/precompiled/stdc++.h b/libstdc++-v3/include/precompiled/stdc++.h index 57c3e2e..118fc8f 100644 --- a/libstdc++-v3/include/precompiled/stdc++.h +++ b/libstdc++-v3/include/precompiled/stdc++.h @@ -135,7 +135,7 @@ #if __cplusplus > 201703L #include <bit> -// #include <compare> +#include <compare> #include <concepts> #include <numbers> #include <ranges> |