| 11807 | namespace Catch { |
| 11808 | |
| 11809 | MessageInfo::MessageInfo( StringRef const& _macroName, |
| 11810 | SourceLineInfo const& _lineInfo, |
| 11811 | ResultWas::OfType _type ) |
| 11812 | : macroName( _macroName ), |
| 11813 | lineInfo( _lineInfo ), |
| 11814 | type( _type ), |
| 11815 | sequence( ++globalCount ) |
| 11816 | {} |
| 11817 | |
| 11818 | bool MessageInfo::operator==( MessageInfo const& other ) const { |
| 11819 | return sequence == other.sequence; |
nothing calls this directly
no outgoing calls
no test coverage detected