mirror of git://gcc.gnu.org/git/gcc.git
locale_facets.tcc (num_put::do_put(..., bool)): Minor tweaks, consistent with the style used in other facets.
2003-11-30 Paolo Carlini <pcarlini@suse.de> * include/bits/locale_facets.tcc (num_put::do_put(..., bool)): Minor tweaks, consistent with the style used in other facets. From-SVN: r74056
This commit is contained in:
parent
c6d43186e5
commit
6c39c2075a
|
|
@ -1,3 +1,8 @@
|
|||
2003-11-30 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* include/bits/locale_facets.tcc (num_put::do_put(..., bool)):
|
||||
Minor tweaks, consistent with the style used in other facets.
|
||||
|
||||
2003-11-29 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* include/bits/fstream.tcc (underflow): Minor tweaks in
|
||||
|
|
|
|||
|
|
@ -1008,15 +1008,14 @@ namespace std
|
|||
const locale& __loc = __io._M_getloc();
|
||||
const __cache_type* __lc = __uc(__loc);
|
||||
|
||||
const _CharT* __name;
|
||||
__name = __v ? __lc->_M_truename : __lc->_M_falsename;
|
||||
const _CharT* __name = __v ? __lc->_M_truename
|
||||
: __lc->_M_falsename;
|
||||
int __len = char_traits<_CharT>::length(__name);
|
||||
|
||||
_CharT* __cs;
|
||||
const streamsize __w = __io.width();
|
||||
if (__w > static_cast<streamsize>(__len))
|
||||
{
|
||||
__cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
|
||||
_CharT* __cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
|
||||
* __w));
|
||||
_M_pad(__fill, __w, __io, __cs, __name, __len);
|
||||
__name = __cs;
|
||||
|
|
|
|||
Loading…
Reference in New Issue