| 79 | } |
| 80 | |
| 81 | bool LocIndex::operator<(const LocIndex &Src) const { |
| 82 | if (Path != Src.getPath()) |
| 83 | return Path < Src.getPath(); |
| 84 | if (Line != Src.getLine()) |
| 85 | return Line < Src.getLine(); |
| 86 | return Column < Src.getColumn(); |
| 87 | } |
| 88 | |
| 89 | bool LocIndex::operator!=(const LocIndex &RHS) const { |
| 90 |