| 94 | } |
| 95 | |
| 96 | bool hasVersion(const Tag& tag) const { |
| 97 | ASSERT(tag != invalidTag); |
| 98 | return versions.find(tag) != versions.end(); |
| 99 | } |
| 100 | |
| 101 | // @pre assumes that the given tag has an entry in the version vector. |
| 102 | Version getVersion(const Tag& tag) const { |
no test coverage detected