| 6787 | namespace Catch { |
| 6788 | |
| 6789 | Section::Section( SectionInfo&& info ): |
| 6790 | m_info( CATCH_MOVE( info ) ), |
| 6791 | m_sectionIncluded( |
| 6792 | getResultCapture().sectionStarted( m_info.name, m_info.lineInfo, m_assertions ) ) { |
| 6793 | // Non-"included" sections will not use the timing information |
| 6794 | // anyway, so don't bother with the potential syscall. |
| 6795 | if (m_sectionIncluded) { |
| 6796 | m_timer.start(); |
| 6797 | } |
| 6798 | } |
| 6799 | |
| 6800 | Section::Section( SourceLineInfo const& _lineInfo, |
| 6801 | StringRef _name, |
nothing calls this directly
no test coverage detected