diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-05-02 16:44:55 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-05-02 16:44:55 +0100 |
commit | 19aaf8141253101cf9d0dd9be6bb04de41ad3fbb (patch) | |
tree | 2efe8090faa2dce0a7b0c25f2a9cf2941d512e86 /libstdc++-v3/include | |
parent | 69b1efc78725ba6d4bd83585a2ab0f20845a1cb2 (diff) | |
download | gcc-19aaf8141253101cf9d0dd9be6bb04de41ad3fbb.zip gcc-19aaf8141253101cf9d0dd9be6bb04de41ad3fbb.tar.gz gcc-19aaf8141253101cf9d0dd9be6bb04de41ad3fbb.tar.bz2 |
Improve Doxygen docs for nested namespaces
* doc/doxygen/doxygroups.cc (std::tr2, std::__gnu_cxx): Improve docs.
(std::experimental): Add docs.
* doc/doxygen/user.cfg.in (PREDEFINED): Expand macros for __cxx11
namespace to nothing when generating docs.
* include/bits/regex_constants.h (std::regex_constants): Improve docs.
* include/std/chrono (std::chrono): Likewise.
* include/std/functional (std::placeholders): Likewise.
* include/std/thread (std::this_thread): Likewise.
From-SVN: r270805
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r-- | libstdc++-v3/include/bits/regex_constants.h | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/std/chrono | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/std/functional | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/std/thread | 5 |
4 files changed, 6 insertions, 5 deletions
diff --git a/libstdc++-v3/include/bits/regex_constants.h b/libstdc++-v3/include/bits/regex_constants.h index a7b51dd..ba98d12 100644 --- a/libstdc++-v3/include/bits/regex_constants.h +++ b/libstdc++-v3/include/bits/regex_constants.h @@ -43,7 +43,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION /** * @namespace std::regex_constants - * @brief ISO C++-0x entities sub namespace for regex. + * @brief ISO C++ 2011 namespace for options and flags used with std::regex */ namespace regex_constants { diff --git a/libstdc++-v3/include/std/chrono b/libstdc++-v3/include/std/chrono index 9e63fa9..1d6326c 100644 --- a/libstdc++-v3/include/std/chrono +++ b/libstdc++-v3/include/std/chrono @@ -54,7 +54,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION */ /** @namespace std::chrono - * @brief ISO C++ 2011 entities sub-namespace for time and date. + * @brief ISO C++ 2011 namespace for date and time utilities */ namespace chrono { diff --git a/libstdc++-v3/include/std/functional b/libstdc++-v3/include/std/functional index 8cf2c67..0c290b9 100644 --- a/libstdc++-v3/include/std/functional +++ b/libstdc++-v3/include/std/functional @@ -199,7 +199,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template<int _Num> struct _Placeholder { }; /** @namespace std::placeholders - * @brief ISO C++11 entities sub-namespace for functional. + * @brief ISO C++ 2011 namespace for std::bind placeholders. * @ingroup binders */ namespace placeholders diff --git a/libstdc++-v3/include/std/thread b/libstdc++-v3/include/std/thread index 4eb744d..2da1101 100644 --- a/libstdc++-v3/include/std/thread +++ b/libstdc++-v3/include/std/thread @@ -328,8 +328,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } /** @namespace std::this_thread - * @brief ISO C++ 2011 entities sub-namespace for thread. - * 30.3.2 Namespace this_thread. + * @brief ISO C++ 2011 namespace for interacting with the current thread + * + * C++11 30.3.2 [thread.thread.this] Namespace this_thread. */ namespace this_thread { |