| 7786 | namespace Catch { |
| 7787 | |
| 7788 | bool SourceLineInfo::empty() const noexcept { |
| 7789 | return file[0] == '\0'; |
| 7790 | } |
| 7791 | bool SourceLineInfo::operator == ( SourceLineInfo const& other ) const noexcept { |
| 7792 | return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); |
| 7793 | } |
no outgoing calls
no test coverage detected