bastring.h (basic_string<>::push_back): Was missing.

2000-03-10  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>

        * std/bastring.h (basic_string<>::push_back): Was missing.

From-SVN: r32474
This commit is contained in:
Gabriel Dos Reis 2000-03-10 22:20:08 +01:00 committed by Gabriel Dos Reis
parent dd1ba632e7
commit e5fd03ba40
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-03-10 Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
* std/bastring.h (basic_string<>::push_back): Was missing.
2000-01-12 Fred Fish <fnf@be.com>
* Makefile.in (SHOPT): New macro, flag to ld to create

View File

@ -213,6 +213,9 @@ public:
#endif
{ return replace (iend (), iend (), first, last); }
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); }