| 75 | size_t LocIndex::getColumn() const { return Column; } |
| 76 | |
| 77 | std::string LocIndex::getIDAsString() const { |
| 78 | return Path + ":" + std::to_string(Line) + ":" + std::to_string(Column); |
| 79 | } |
| 80 | |
| 81 | bool LocIndex::operator<(const LocIndex &Src) const { |
| 82 | if (Path != Src.getPath()) |
no outgoing calls
no test coverage detected