forked from catchorg/Catch2
Remove pointless virtual on StreamingReporterBase::Node destructor
This commit is contained in:
@@ -22,7 +22,6 @@ 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() = default;
|
|
||||||
|
|
||||||
using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
|
using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
|
||||||
T value;
|
T value;
|
||||||
|
Reference in New Issue
Block a user