* Clears the string that this stream operates on and resets the * read/write pointers. */
| 228 | * read/write pointers. |
| 229 | */ |
| 230 | inline void Clear() { |
| 231 | Str().clear(); |
| 232 | Pos_ = 0; |
| 233 | } |
| 234 | |
| 235 | // TODO: compatibility with existing code, remove |
| 236 |
no test coverage detected