| 9345 | namespace Catch { |
| 9346 | |
| 9347 | MessageInfo::MessageInfo( StringRef const& _macroName, |
| 9348 | SourceLineInfo const& _lineInfo, |
| 9349 | ResultWas::OfType _type ) |
| 9350 | : macroName( _macroName ), |
| 9351 | lineInfo( _lineInfo ), |
| 9352 | type( _type ), |
| 9353 | sequence( ++globalCount ) |
| 9354 | {} |
| 9355 | |
| 9356 | bool MessageInfo::operator==( MessageInfo const& other ) const { |
| 9357 | return sequence == other.sequence; |
nothing calls this directly
no outgoing calls
no test coverage detected