Default StreamingReporterBase::Node destructor

This commit is contained in:
Martin Hořeňovský 2020-11-11 21:39:22 +01:00
parent 79c1bf9301
commit 1cef51b69b
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ namespace Catch {
template<typename T, typename ChildNodeT>
struct Node {
explicit Node( T const& _value ) : value( _value ) {}
virtual ~Node() {}
virtual ~Node() = default;
using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
T value;