1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-07 15:23:52 +00:00

Remove pointless virtual on StreamingReporterBase::Node destructor

This commit is contained in:
Martin Hořeňovský 2020-11-25 21:57:30 +01:00
parent 3610eb81b1
commit e5ccb79bf8
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A

View File

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