This is the mail archive of the libstdc++@sourceware.cygnus.com mailing list for the libstdc++ project.


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

minor problem


2000-04-25 Steven King <sxking@uswest.net>

	* bits/basic_string.h: fix syntax error

*** libstdc++-v3/bits/basic_string.h.orig	Fri Apr 21 13:33:28 2000
--- libstdc++-v3/bits/basic_string.h	Tue Apr 25 12:10:44 2000
***************
*** 889,895 ****
      {
        typedef basic_string<_CharT, _Traits, _Alloc> __string_type;
        __string_type __str(__lhs);
!       __str.append(__string_type::size_type(1), __rhs);
        return __str;
      }
  
--- 889,895 ----
      {
        typedef basic_string<_CharT, _Traits, _Alloc> __string_type;
        __string_type __str(__lhs);
!       __str.append(typename __string_type::size_type(1), __rhs);
        return __str;
      }
  

-- 
Steven King
sxking@uswest.net

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