type_traits.h (__Boolean): Renamed template from _Bool.

2001-10-20  Brendan Kehoe  <brendan@zen.org>

	* include/bits/type_traits.h (__Boolean): Renamed template from _Bool.
	(__true_type, __false_type): Change usage.
	* src/string-inst.cc (__destroy_aux): Change third parm to be
	__false_type instead of _Bool<false>.
	* src/misc-inst.cc (__uninitialized_fill_n_aux,
	__uninitialized_copy_aux): Likewise.

From-SVN: r46387
This commit is contained in:
Brendan Kehoe 2001-10-20 15:28:50 -04:00 committed by Hans-Peter Nilsson
parent d7aa3e1e9a
commit 8829f27a76
3 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,12 @@
2001-10-20 Brendan Kehoe <brendan@zen.org>
* include/bits/type_traits.h (__Boolean): Renamed template from _Bool.
(__true_type, __false_type): Change usage.
* src/string-inst.cc (__destroy_aux): Change third parm to be
__false_type instead of _Bool<false>.
* src/misc-inst.cc (__uninitialized_fill_n_aux,
__uninitialized_copy_aux): Likewise.
2001-10-19 Benjamin Kosnik <bkoz@redhat.com>
* mkcheck.in (static_fail): Remove older memory limit functionality.

View File

@ -233,13 +233,13 @@ namespace std
template
string*
__uninitialized_fill_n_aux<string*, size_t, string>
(string*, size_t, string const &, _Bool<false>);
(string*, size_t, string const &, __false_type);
template
string*
__uninitialized_copy_aux<vector<string>::const_iterator, string *>
(vector<string>::const_iterator, vector<string>::const_iterator,
string*, _Bool<false>);
string*, __false_type);
template
void

View File

@ -102,5 +102,5 @@ namespace std
template
void
__destroy_aux<S*>(S*, S*, _Bool<false>);
__destroy_aux<S*>(S*, S*, __false_type);
} // namespace std