Address results of PVS-Studio static analysis

Couple are left un-addressed, see #958 for details.
This commit is contained in:
Martin Hořeňovský
2017-07-20 00:27:28 +02:00
parent 2a586437e8
commit 87a66b8479
24 changed files with 21335 additions and 38 deletions

View File

@@ -38,7 +38,8 @@ namespace Catch {
public:
ScopedElement( XmlWriter* writer );
ScopedElement( ScopedElement const& other );
ScopedElement( ScopedElement&& other );
ScopedElement& operator=( ScopedElement&& other );
~ScopedElement();
@@ -51,7 +52,7 @@ namespace Catch {
}
private:
mutable XmlWriter* m_writer;
mutable XmlWriter* m_writer = nullptr;
};
XmlWriter( std::ostream& os = Catch::cout() );