| 8606 | line( _line ) |
| 8607 | {} |
| 8608 | bool SourceLineInfo::empty() const { |
| 8609 | return file[0] == '\0'; |
| 8610 | } |
| 8611 | bool SourceLineInfo::operator == ( SourceLineInfo const& other ) const { |
| 8612 | return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); |
| 8613 | } |
no outgoing calls
no test coverage detected