| 359 | } |
| 360 | |
| 361 | const UTF16 StringBuffer::getChar(const U32 offset) const |
| 362 | { |
| 363 | incRequestCount16(); |
| 364 | |
| 365 | // Allow them to grab the null terminator if they want. |
| 366 | AssertFatal(offset < (U32)mBuffer.size(), "StringBuffer::getChar - outside of range."); |
| 367 | |
| 368 | return mBuffer[offset]; |
| 369 | } |
| 370 | |
| 371 | //------------------------------------------------------------------------- |
| 372 |
no test coverage detected