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