This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
[v3] atomic typedefs doxygen group markup
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org, libstdc++ at gcc dot gnu dot org
- Date: Mon, 1 Mar 2010 11:07:00 -0800
- Subject: [v3] atomic typedefs doxygen group markup
little patchlet....
-benjamin
tested x86_64/linux
2010-03-01 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/atomicfwd_cxx.h: Add typedefs to group.
Index: include/bits/atomicfwd_cxx.h
===================================================================
--- include/bits/atomicfwd_cxx.h (revision 157151)
+++ include/bits/atomicfwd_cxx.h (working copy)
@@ -1,6 +1,6 @@
// -*- C++ -*- header.
-// Copyright (C) 2008, 2009
+// Copyright (C) 2008, 2009, 2010
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@@ -62,6 +62,11 @@
using __atomic0::__atomic_base;
}
+ /**
+ * @addtogroup atomics
+ * @{
+ */
+
/// atomic_char
typedef __atomic_base<char> atomic_char;
@@ -106,4 +111,7 @@
template<typename _Tp>
struct atomic;
+
+ // @} group atomics
+
_GLIBCXX_BEGIN_EXTERN_C