| 346 | } |
| 347 | |
| 348 | const UTF16 StringBuffer::getChar(const U32 offset) const |
| 349 | { |
| 350 | incRequestCount16(); |
| 351 | |
| 352 | // Allow them to grab the null terminator if they want. |
| 353 | AssertFatal(offset<mBuffer.size(), "StringBuffer::getChar - outside of range."); |
| 354 | |
| 355 | return mBuffer[offset]; |
| 356 | } |
| 357 | |
| 358 | //------------------------------------------------------------------------- |
| 359 |
no test coverage detected