This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3] libstdc++/6511



Committed as obvious. Fixes solaris regressions.

tested sparc/solaris2.8
gcc
gcc-3_1-branch

2002-04-30  Benjamin Kosnik  <bkoz@redhat.com>

	PR libstdc++/6511
	* config/os/solaris/solaris2.7/bits/ctype_noninline.h: Fix typo.

Index: config/os/solaris/solaris2.7/bits/ctype_noninline.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/config/os/solaris/solaris2.7/bits/ctype_noninline.h,v
retrieving revision 1.8
diff -c -p -r1.8 ctype_noninline.h
*** config/os/solaris/solaris2.7/bits/ctype_noninline.h	13 Mar 2002 02:32:07 -0000	1.8
--- config/os/solaris/solaris2.7/bits/ctype_noninline.h	30 Apr 2002 09:09:40 -0000
***************
*** 48,54 ****
    ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
    : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
    _M_toupper(__trans_upper), _M_tolower(__trans_lower),
!   _M_table(__table == 0 ? __table : classic_table()) 
    { }
  
    char
--- 48,54 ----
    ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
    : __ctype_abstract_base<char>(__refs), _M_del(__table != 0 && __del), 
    _M_toupper(__trans_upper), _M_tolower(__trans_lower),
!   _M_table(__table ? __table : classic_table()) 
    { }
  
    char


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]