| 6663 | namespace Catch { |
| 6664 | |
| 6665 | bool SourceLineInfo::empty() const noexcept { |
| 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 | } |
no outgoing calls
no test coverage detected