mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-20 12:26:10 +01:00
Cleanup visibility in StreamingReporterBase
This commit is contained in:
parent
a754cb9062
commit
b2ac27423a
@ -33,8 +33,8 @@ namespace Catch {
|
||||
};
|
||||
|
||||
|
||||
struct StreamingReporterBase : IStreamingReporter {
|
||||
|
||||
class StreamingReporterBase : public IStreamingReporter {
|
||||
public:
|
||||
StreamingReporterBase( ReporterConfig const& _config ):
|
||||
IStreamingReporter( _config.fullConfig() ),
|
||||
stream( _config.stream() ) {}
|
||||
@ -82,6 +82,7 @@ namespace Catch {
|
||||
void listTests( std::vector<TestCaseHandle> const& tests ) override;
|
||||
void listTags( std::vector<TagInfo> const& tags ) override;
|
||||
|
||||
protected:
|
||||
std::ostream& stream;
|
||||
|
||||
LazyStat<TestRunInfo> currentTestRunInfo;
|
||||
|
Loading…
Reference in New Issue
Block a user