2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-09 15:11:20 +08:00

atomicfwd_cxx.h: Add typedefs to group.

2010-03-01  Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/atomicfwd_cxx.h: Add typedefs to group.

From-SVN: r157152
This commit is contained in:
Benjamin Kosnik 2010-03-01 19:04:23 +00:00 committed by Benjamin Kosnik
parent eb2573eeb4
commit 44de0937ab
2 changed files with 13 additions and 1 deletions
libstdc++-v3

@ -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

@ -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