| 137 | int major; |
| 138 | int minor; |
| 139 | bool operator<(const VersionKey &other) const { |
| 140 | return std::tie(major, minor) < std::tie(other.major, other.minor); |
| 141 | } |
| 142 | }; |
| 143 | std::map<VersionKey, std::vector<StringRef>> versionGroups; |
| 144 |
nothing calls this directly
no outgoing calls
no test coverage detected