Remove pointless mutable from ScopedElement's XmlWriter ptr

This commit is contained in:
Martin Hořeňovský 2022-04-12 22:31:47 +02:00
parent 7a89916198
commit 9934b7de13
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ namespace Catch {
}
private:
mutable XmlWriter* m_writer = nullptr;
XmlWriter* m_writer = nullptr;
XmlFormatting m_fmt;
};