diff options
Diffstat (limited to 'libstdc++-v3/doc/doxygen')
-rw-r--r-- | libstdc++-v3/doc/doxygen/doxygroups.cc | 3 | ||||
-rw-r--r-- | libstdc++-v3/doc/doxygen/user.cfg.in | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libstdc++-v3/doc/doxygen/doxygroups.cc b/libstdc++-v3/doc/doxygen/doxygroups.cc index f051a7e7b554..d0adec9e5fb5 100644 --- a/libstdc++-v3/doc/doxygen/doxygroups.cc +++ b/libstdc++-v3/doc/doxygen/doxygroups.cc @@ -34,6 +34,9 @@ /** @namespace std::placeholders * @brief ISO C++ 0x entities sub namespace for functional. */ +/** @namespace std::this_thread + * @brief ISO C++ 0x entities sub namespace for thread. +*/ /** @namespace __gnu_cxx * @brief GNU extensions for public use. */ diff --git a/libstdc++-v3/doc/doxygen/user.cfg.in b/libstdc++-v3/doc/doxygen/user.cfg.in index 059d95da2299..fdb1ea1e5f8a 100644 --- a/libstdc++-v3/doc/doxygen/user.cfg.in +++ b/libstdc++-v3/doc/doxygen/user.cfg.in @@ -468,6 +468,7 @@ INPUT = @srcdir@/libsupc++/cxxabi.h \ include/algorithm \ include/array \ include/bitset \ + include/condition_variable \ include/date_time \ include/deque \ include/fstream \ @@ -483,6 +484,7 @@ INPUT = @srcdir@/libsupc++/cxxabi.h \ include/locale \ include/map \ include/memory \ + include/mutex \ include/numeric \ include/ostream \ include/queue \ @@ -495,6 +497,7 @@ INPUT = @srcdir@/libsupc++/cxxabi.h \ include/streambuf \ include/string \ include/system_error \ + include/thread \ include/tuple \ include/type_traits \ include/unordered_map \ @@ -516,6 +519,7 @@ INPUT = @srcdir@/libsupc++/cxxabi.h \ include/csetjmp \ include/csignal \ include/cstdarg \ + include/cstdatomic \ include/cstdbool \ include/cstddef \ include/cstdint \ @@ -1162,7 +1166,8 @@ INCLUDE_FILE_PATTERNS = # undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = __GTHREADS \ +PREDEFINED = __cplusplus \ + __GTHREADS \ "_GLIBCXX_STD_P= " \ "_GLIBCXX_STD_D= " \ _GLIBCXX_STD=std \ |