| 3447 | } |
| 3448 | |
| 3449 | void StyledWriter::writeWithIndent(const std::string &value) { |
| 3450 | writeIndent(); |
| 3451 | document_ += value; |
| 3452 | } |
| 3453 | |
| 3454 | void StyledWriter::indent() { indentString_ += std::string(indentSize_, ' '); } |
| 3455 |
nothing calls this directly
no outgoing calls
no test coverage detected