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