Commit a8cad3e1 by Paolo Carlini Committed by Paolo Carlini

std_bitset.h: Fully qualify standard functions with std::, thus avoiding Koenig lookup.

2003-07-05  Paolo Carlini  <pcarlini@unitus.it>

	* include/std/std_bitset.h: Fully qualify standard
	functions with std::, thus avoiding Koenig lookup.

	* include/std/std_fstream.h: Change comment to doxygen style.

From-SVN: r68964
parent 8bb038d4
2003-07-05 Paolo Carlini <pcarlini@unitus.it>
* include/std/std_bitset.h: Fully qualify standard
functions with std::, thus avoiding Koenig lookup.
* include/std/std_fstream.h: Change comment to doxygen style.
2003-07-05 Phil Edwards <pme@gcc.gnu.org> 2003-07-05 Phil Edwards <pme@gcc.gnu.org>
* include/std/std_limits.h: More CPP->CXX changes. * include/std/std_limits.h: More CPP->CXX changes.
......
...@@ -228,7 +228,7 @@ namespace std ...@@ -228,7 +228,7 @@ namespace std
_M_w[__wshift] = _M_w[0] << __offset; _M_w[__wshift] = _M_w[0] << __offset;
} }
fill(_M_w + 0, _M_w + __wshift, static_cast<_WordT>(0)); std::fill(_M_w + 0, _M_w + __wshift, static_cast<_WordT>(0));
} }
} }
...@@ -253,8 +253,8 @@ namespace std ...@@ -253,8 +253,8 @@ namespace std
(_M_w[__n + __wshift + 1] << __sub_offset); (_M_w[__n + __wshift + 1] << __sub_offset);
_M_w[__limit] = _M_w[_Nw-1] >> __offset; _M_w[__limit] = _M_w[_Nw-1] >> __offset;
} }
fill(_M_w + __limit + 1, _M_w + _Nw, static_cast<_WordT>(0)); std::fill(_M_w + __limit + 1, _M_w + _Nw, static_cast<_WordT>(0));
} }
} }
......
...@@ -145,11 +145,15 @@ namespace std ...@@ -145,11 +145,15 @@ namespace std
*/ */
bool _M_buf_allocated; bool _M_buf_allocated;
// _M_reading == false && _M_writing == false for 'uncommitted' mode; /**
// _M_reading == true for 'read' mode; * @if maint
// _M_writing == true for 'write' mode; * _M_reading == false && _M_writing == false for 'uncommitted' mode;
// * _M_reading == true for 'read' mode;
// NB: _M_reading == true && _M_writing == true is unused. * _M_writing == true for 'write' mode;
*
* NB: _M_reading == true && _M_writing == true is unused.
* @endif
*/
bool _M_reading; bool _M_reading;
bool _M_writing; bool _M_writing;
......
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