| 23 | } |
| 24 | |
| 25 | void StringBuffer::append(value_type chr) |
| 26 | { |
| 27 | if (offset >= maxLen) |
| 28 | { |
| 29 | throw Exception::OverflowError("String buffer overflow"); |
| 30 | } |
| 31 | |
| 32 | buffer[offset] = chr; |
| 33 | offset++; |
| 34 | } |
| 35 | |
| 36 | void StringBuffer::append(const char* input) |
| 37 | { |
no outgoing calls
no test coverage detected