ctype_noninline.h: Tweak format.
2002-06-08 Benjamin Kosnik <bkoz@redhat.com> * config/os/generic/bits/ctype_noninline.h: Tweak format. From-SVN: r54371
This commit is contained in:
parent
bf3f2a12a7
commit
4e4bcb4e86
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-06-08 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* config/os/generic/bits/ctype_noninline.h: Tweak format.
|
||||
|
||||
2002-06-07 Steve Ellcey <sje@cup.hp.com>
|
||||
|
||||
* src/locale-inst.cc (__codecvt_abstract_base):
|
||||
|
@ -100,6 +104,7 @@
|
|||
* testsuite/23_containers/vector_bool.cc (test02): New test.
|
||||
|
||||
2002-05-30 Marc Espie <espie@openbsd.org>
|
||||
|
||||
* configure.in: Always check for sys/types.h
|
||||
* configure: Regenerate.
|
||||
|
||||
|
|
|
@ -42,13 +42,13 @@
|
|||
size_t __refs)
|
||||
: __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del),
|
||||
_M_toupper(NULL), _M_tolower(NULL),
|
||||
_M_table(__table == 0 ? classic_table() : __table)
|
||||
_M_table(__table ? __table : classic_table())
|
||||
{ }
|
||||
|
||||
ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
|
||||
: __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del),
|
||||
_M_toupper(NULL), _M_tolower(NULL),
|
||||
_M_table(__table == 0 ? classic_table() : __table)
|
||||
_M_table(__table ? __table : classic_table())
|
||||
{ }
|
||||
|
||||
char
|
||||
|
|
Loading…
Add table
Reference in a new issue