| 3452 | } |
| 3453 | |
| 3454 | void StyledWriter::indent() { indentString_ += std::string(indentSize_, ' '); } |
| 3455 | |
| 3456 | void StyledWriter::unindent() { |
| 3457 | assert(int(indentString_.size()) >= indentSize_); |
nothing calls this directly
no outgoing calls
no test coverage detected