| 719 | } |
| 720 | |
| 721 | void String::appendCharPointer (const CharPointerType textToAppend) |
| 722 | { |
| 723 | appendCharPointer (textToAppend, textToAppend.findTerminatingNull()); |
| 724 | } |
| 725 | |
| 726 | void String::appendCharPointer (const CharPointerType startOfTextToAppend, |
| 727 | const CharPointerType endOfTextToAppend) |
no test coverage detected