| 132 | /*********************************************/ |
| 133 | |
| 134 | inline void String::init(void) |
| 135 | { |
| 136 | buffer = NULL; |
| 137 | capacity = 0; |
| 138 | len = 0; |
| 139 | } |
| 140 | |
| 141 | void String::invalidate(void) |
| 142 | { |
nothing calls this directly
no outgoing calls
no test coverage detected