| 9588 | namespace Catch { |
| 9589 | |
| 9590 | bool SourceLineInfo::empty() const noexcept { |
| 9591 | return file[0] == '\0'; |
| 9592 | } |
| 9593 | bool SourceLineInfo::operator == ( SourceLineInfo const& other ) const noexcept { |
| 9594 | return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); |
| 9595 | } |
no outgoing calls