| 8471 | namespace Catch { |
| 8472 | |
| 8473 | SectionInfo::SectionInfo |
| 8474 | ( SourceLineInfo const& _lineInfo, |
| 8475 | std::string const& _name, |
| 8476 | std::string const& _description ) |
| 8477 | : name( _name ), |
| 8478 | description( _description ), |
| 8479 | lineInfo( _lineInfo ) |
| 8480 | {} |
| 8481 | |
| 8482 | Section::Section( SectionInfo const& info ) |
| 8483 | : m_info( info ), |
nothing calls this directly
no outgoing calls
no test coverage detected