From c0f866c7cfae9d84c57f1172f44b1355f4636fa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 8 Sep 2021 00:23:37 +0200 Subject: [PATCH] Make CumulativeReporterBase's members protected --- 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 7c2ad9ac..8340aadb 100644 --- a/src/catch2/reporters/catch_reporter_cumulative_base.hpp +++ b/src/catch2/reporters/catch_reporter_cumulative_base.hpp @@ -70,7 +70,7 @@ namespace Catch { void listTests( std::vector const& tests ) override; void listTags( std::vector const& tags ) override; - + protected: std::ostream& stream; // Note: We rely on pointer identity being stable, which is why // we store pointers to the nodes rather than the values.