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