Remove superfluous default argument from XMLWriter's constructor

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

View File

@ -81,7 +81,7 @@ namespace Catch {
XmlFormatting m_fmt;
};
XmlWriter( std::ostream& os = Catch::cout() );
XmlWriter( std::ostream& os );
~XmlWriter();
XmlWriter( XmlWriter const& ) = delete;