| 4696 | } |
| 4697 | |
| 4698 | void StyledWriter::pushValue(const JSONCPP_STRING& value) { |
| 4699 | if (addChildValues_) |
| 4700 | childValues_.push_back(value); |
| 4701 | else |
| 4702 | document_ += value; |
| 4703 | } |
| 4704 | |
| 4705 | void StyledWriter::writeIndent() { |
| 4706 | if (!document_.empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected