| 724 | SourceLoc() : line(0), col(0) {} |
| 725 | |
| 726 | bool operator==(const SourceLoc& b) const |
| 727 | { |
| 728 | return function == b.function && filename == b.filename && line == b.line && col == b.col; |
| 729 | } |
| 730 | |
| 731 | bool operator!=(const SourceLoc& b) const { return !(*this == b); } |
| 732 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected