MCPcopy Create free account
hub / github.com/RenderKit/oidn / SectionTracker

Method SectionTracker

external/catch.hpp:14494–14505  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14492 }
14493
14494 SectionTracker::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
14495 : TrackerBase( nameAndLocation, ctx, parent ),
14496 m_trimmed_name(trim(nameAndLocation.name))
14497 {
14498 if( parent ) {
14499 while( !parent->isSectionTracker() )
14500 parent = &parent->parent();
14501
14502 SectionTracker& parentSection = static_cast<SectionTracker&>( *parent );
14503 addNextFilters( parentSection.m_filters );
14504 }
14505 }
14506
14507 bool SectionTracker::isComplete() const {
14508 bool complete = true;

Callers

nothing calls this directly

Calls 2

trimFunction · 0.85
isSectionTrackerMethod · 0.80

Tested by

no test coverage detected