| 6666 | return file[0] == '\0'; |
| 6667 | } |
| 6668 | bool SourceLineInfo::operator == ( SourceLineInfo const& other ) const noexcept { |
| 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 | } |