Tiny cleanups in tracking

This commit is contained in:
Martin Hořeňovský 2021-06-09 21:37:35 +02:00
parent c1b59b7071
commit 4ce8a23edd
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
3 changed files with 2 additions and 6 deletions

View File

@ -156,7 +156,7 @@ namespace Catch {
m_generator = std::move( generator );
}
};
GeneratorTracker::~GeneratorTracker() {}
GeneratorTracker::~GeneratorTracker() = default;
}
RunContext::RunContext(IConfig const* _config, IStreamingReporterPtr&& reporter)

View File

@ -244,10 +244,6 @@ namespace TestCaseTracking {
} // namespace TestCaseTracking
using TestCaseTracking::ITracker;
using TestCaseTracking::TrackerContext;
using TestCaseTracking::SectionTracker;
} // namespace Catch
#if defined(__clang__)

View File

@ -32,7 +32,7 @@ namespace TestCaseTracking {
using ITrackerPtr = Catch::Detail::unique_ptr<ITracker>;
class ITracker {
class ITracker {
NameAndLocation m_nameAndLocation;
using Children = std::vector<ITrackerPtr>;