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;