|
Lines 335-341
Link Here
|
| 335 |
|
335 |
|
| 336 |
public: |
336 |
public: |
| 337 |
const charT* c_str () const |
337 |
const charT* c_str () const |
| 338 |
{ if (length () == 0) return ""; terminate (); return data (); } |
338 |
{ if (length () == 0) return (charT const *) ""; terminate (); return data (); } |
| 339 |
void resize (size_type n, charT c); |
339 |
void resize (size_type n, charT c); |
| 340 |
void resize (size_type n) |
340 |
void resize (size_type n) |
| 341 |
{ resize (n, eos ()); } |
341 |
{ resize (n, eos ()); } |