| 107 | } |
| 108 | |
| 109 | void cmXMLWriter::ConditionalLineBreak(bool condition) |
| 110 | { |
| 111 | if (condition) { |
| 112 | this->Output << '\n'; |
| 113 | for (std::size_t i = 0; i < this->Indent + this->Level; ++i) { |
| 114 | this->Output << this->IndentationElement; |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | void cmXMLWriter::PreAttribute() |
| 120 | { |
no outgoing calls
no test coverage detected