| 11663 | namespace Catch { |
| 11664 | |
| 11665 | MessageInfo::MessageInfo( StringRef const& _macroName, |
| 11666 | SourceLineInfo const& _lineInfo, |
| 11667 | ResultWas::OfType _type ) |
| 11668 | : macroName( _macroName ), |
| 11669 | lineInfo( _lineInfo ), |
| 11670 | type( _type ), |
| 11671 | sequence( ++globalCount ) |
| 11672 | {} |
| 11673 | |
| 11674 | bool MessageInfo::operator==( MessageInfo const& other ) const { |
| 11675 | return sequence == other.sequence; |
nothing calls this directly
no outgoing calls
no test coverage detected