| 6417 | namespace Catch { |
| 6418 | |
| 6419 | bool SourceLineInfo::empty() const noexcept { |
| 6420 | return file[0] == '\0'; |
| 6421 | } |
| 6422 | bool SourceLineInfo::operator==(SourceLineInfo const &other) const noexcept { |
| 6423 | return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); |
| 6424 | } |
no outgoing calls
no test coverage detected