mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Default StreamingReporterBase::Node destructor
This commit is contained in:
parent
79c1bf9301
commit
1cef51b69b
@ -22,7 +22,7 @@ namespace Catch {
|
|||||||
template<typename T, typename ChildNodeT>
|
template<typename T, typename ChildNodeT>
|
||||||
struct Node {
|
struct Node {
|
||||||
explicit Node( T const& _value ) : value( _value ) {}
|
explicit Node( T const& _value ) : value( _value ) {}
|
||||||
virtual ~Node() {}
|
virtual ~Node() = default;
|
||||||
|
|
||||||
using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
|
using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
|
||||||
T value;
|
T value;
|
||||||
|
Loading…
Reference in New Issue
Block a user