| 15730 | } |
| 15731 | |
| 15732 | void XmlWriter::applyFormatting(XmlFormatting fmt) { |
| 15733 | m_needsNewline = shouldNewline(fmt); |
| 15734 | } |
| 15735 | |
| 15736 | void XmlWriter::writeDeclaration() { |
| 15737 | m_os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"; |
nothing calls this directly
no test coverage detected