Commit 5a4db26d by Paolo Carlini Committed by Paolo Carlini

std_bitset.h: Minor formatting fixes.

2004-05-16  Paolo Carlini  <pcarlini@suse.de>

	* include/std/std_bitset.h: Minor formatting fixes.

From-SVN: r81917
parent 08f7c2eb
2004-05-16 Paolo Carlini <pcarlini@suse.de> 2004-05-16 Paolo Carlini <pcarlini@suse.de>
* include/std/std_bitset.h: Minor formatting fixes.
2004-05-16 Paolo Carlini <pcarlini@suse.de>
* include/ext/mt_allocator.h (__mt_alloc<>::deallocate): * include/ext/mt_allocator.h (__mt_alloc<>::deallocate):
Consistently update __bin._M_free[0]. Consistently update __bin._M_free[0].
(__mt_alloc<>::allocate): When __bin._M_first[0] != NULL use (__mt_alloc<>::allocate): When __bin._M_first[0] != NULL use
......
...@@ -340,11 +340,11 @@ namespace _GLIBCXX_STD ...@@ -340,11 +340,11 @@ namespace _GLIBCXX_STD
_Base_bitset(void) _Base_bitset(void)
: _M_w(0) : _M_w(0)
{} { }
_Base_bitset(unsigned long __val) _Base_bitset(unsigned long __val)
: _M_w(__val) : _M_w(__val)
{} { }
static size_t static size_t
_S_whichword(size_t __pos ) _S_whichword(size_t __pos )
...@@ -464,10 +464,10 @@ namespace _GLIBCXX_STD ...@@ -464,10 +464,10 @@ namespace _GLIBCXX_STD
typedef unsigned long _WordT; typedef unsigned long _WordT;
_Base_bitset() _Base_bitset()
{} { }
_Base_bitset(unsigned long) _Base_bitset(unsigned long)
{} { }
static size_t static size_t
_S_whichword(size_t __pos ) _S_whichword(size_t __pos )
...@@ -505,35 +505,35 @@ namespace _GLIBCXX_STD ...@@ -505,35 +505,35 @@ namespace _GLIBCXX_STD
void void
_M_do_and(const _Base_bitset<0>&) _M_do_and(const _Base_bitset<0>&)
{} { }
void void
_M_do_or(const _Base_bitset<0>&) _M_do_or(const _Base_bitset<0>&)
{} { }
void void
_M_do_xor(const _Base_bitset<0>&) _M_do_xor(const _Base_bitset<0>&)
{} { }
void void
_M_do_left_shift(size_t) _M_do_left_shift(size_t)
{} { }
void void
_M_do_right_shift(size_t) _M_do_right_shift(size_t)
{} { }
void void
_M_do_flip() _M_do_flip()
{} { }
void void
_M_do_set() _M_do_set()
{} { }
void void
_M_do_reset() _M_do_reset()
{} { }
// Are all empty bitsets equal to each other? Are they equal to // Are all empty bitsets equal to each other? Are they equal to
// themselves? How to compare a thing which has no state? What is // themselves? How to compare a thing which has no state? What is
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment