| 6669 | return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); |
| 6670 | } |
| 6671 | bool SourceLineInfo::operator < ( SourceLineInfo const& other ) const noexcept { |
| 6672 | return line < other.line || ( line == other.line && (std::strcmp(file, other.file) < 0)); |
| 6673 | } |
| 6674 | |
| 6675 | std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info ) { |
| 6676 | #ifndef __GNUG__ |
nothing calls this directly
no outgoing calls
no test coverage detected