| 512 | /*********************************************/ |
| 513 | |
| 514 | char String::charAt(unsigned int loc) const |
| 515 | { |
| 516 | return operator[](loc); |
| 517 | } |
| 518 | |
| 519 | void String::setCharAt(unsigned int loc, char c) |
| 520 | { |
nothing calls this directly
no outgoing calls
no test coverage detected