| 4719 | } |
| 4720 | |
| 4721 | void StyledWriter::indent() { indentString_ += JSONCPP_STRING(indentSize_, ' '); } |
| 4722 | |
| 4723 | void StyledWriter::unindent() { |
| 4724 | assert(indentString_.size() >= indentSize_); |
nothing calls this directly
no outgoing calls
no test coverage detected