| 8005 | namespace Catch { |
| 8006 | |
| 8007 | bool SourceLineInfo::empty() const noexcept { |
| 8008 | return file[0] == '\0'; |
| 8009 | } |
| 8010 | bool SourceLineInfo::operator == ( SourceLineInfo const& other ) const noexcept { |
| 8011 | return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); |
| 8012 | } |
no outgoing calls
no test coverage detected