diff options
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/atomicfwd_cxx.h | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1bf4425b961..2b839a6ece4 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2010-03-01 Benjamin Kosnik <bkoz@redhat.com> + + * include/bits/atomicfwd_cxx.h: Add typedefs to group. + 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> PR libstdc++/32499 diff --git a/libstdc++-v3/include/bits/atomicfwd_cxx.h b/libstdc++-v3/include/bits/atomicfwd_cxx.h index 8b67635dbf7..8ef25e622cc 100644 --- a/libstdc++-v3/include/bits/atomicfwd_cxx.h +++ b/libstdc++-v3/include/bits/atomicfwd_cxx.h @@ -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 @@ _GLIBCXX_END_EXTERN_C using __atomic0::__atomic_base; } + /** + * @addtogroup atomics + * @{ + */ + /// atomic_char typedef __atomic_base<char> atomic_char; @@ -106,4 +111,7 @@ _GLIBCXX_END_EXTERN_C template<typename _Tp> struct atomic; + + // @} group atomics + _GLIBCXX_BEGIN_EXTERN_C |