| 15269 | } |
| 15270 | |
| 15271 | XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer, XmlFormatting fmt ) |
| 15272 | : m_writer( writer ), |
| 15273 | m_fmt(fmt) |
| 15274 | {} |
| 15275 | |
| 15276 | XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept |
| 15277 | : m_writer( other.m_writer ), |
nothing calls this directly
no outgoing calls
no test coverage detected