Lars Gullik Bjønnes wrote:
> I wonder if 2.95.3 has push_back?

I'm not shure if this is the right information. I have gcc 2.95.3 and this is a 
part from /usr/include/g++/std/bastring.h:

void push_back(charT __c)
  { append(1, __c); }

  basic_string& assign (const basic_string& str, size_type pos = 0,
                        size_type n = npos)
    { return replace (0, npos, str, pos, n); }
  basic_string& assign (const charT* s, size_type n)
    { return replace (0, npos, s, n); }
  basic_string& assign (const charT* s)
    { return assign (s, traits::length (s)); }
  basic_string& assign (size_type n, charT c)
    { return replace (0, npos, n, c); }

--

Juergen.



---------------------------------------------
This message was sent using Endymion MailMan.
http://www.endymion.com/products/mailman/


Reply via email to