[neo, 5/7/2007]: cant be constant as it calles updateBuffer8()! const UTF8* StringBuffer::getPtr8() const
| 411 | // [neo, 5/7/2007]: cant be constant as it calles updateBuffer8()! |
| 412 | //const UTF8* StringBuffer::getPtr8() const |
| 413 | const UTF8* StringBuffer::getPtr8() |
| 414 | { |
| 415 | incRequestCount8(); |
| 416 | // get a pointer to the utf8 version of the StringBuffer's data store. |
| 417 | // if the utf8 version is dirty, update it first. |
| 418 | if(mDirty8) |
| 419 | updateBuffer8(); |
| 420 | return mBuffer8.address(); |
| 421 | } |
| 422 | |
| 423 | void StringBuffer::updateBuffer8() |
| 424 | { |
no test coverage detected