| 15735 | } |
| 15736 | |
| 15737 | void XmlWriter::ensureTagClosed() { |
| 15738 | if( m_tagIsOpen ) { |
| 15739 | m_os << '>' << std::flush; |
| 15740 | newlineIfNecessary(); |
| 15741 | m_tagIsOpen = false; |
| 15742 | } |
| 15743 | } |
| 15744 | |
| 15745 | void XmlWriter::applyFormatting(XmlFormatting fmt) { |
| 15746 | m_needsNewline = shouldNewline(fmt); |
no outgoing calls
no test coverage detected