From e5ccb79bf865cdf681f2a50bc7c9a724b2e04021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 25 Nov 2020 21:57:30 +0100 Subject: [PATCH] Remove pointless virtual on StreamingReporterBase::Node destructor --- src/catch2/reporters/catch_reporter_cumulative_base.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/catch2/reporters/catch_reporter_cumulative_base.hpp b/src/catch2/reporters/catch_reporter_cumulative_base.hpp index f0d04b9f..0df65aea 100644 --- a/src/catch2/reporters/catch_reporter_cumulative_base.hpp +++ b/src/catch2/reporters/catch_reporter_cumulative_base.hpp @@ -22,7 +22,6 @@ namespace Catch { template struct Node { explicit Node( T const& _value ) : value( _value ) {} - virtual ~Node() = default; using ChildNodes = std::vector>; T value;