| 20 | } |
| 21 | |
| 22 | std::size_t StringCacheHash::operator()(const StringCacheEntry& entry) const { |
| 23 | return entry.impl->getHash(); |
| 24 | } |
| 25 | |
| 26 | bool StringCacheEqual::operator()(const Valdi::StringCacheEntry& left, const Valdi::StringCacheEntry& right) const { |
| 27 | return left.impl == right.impl; |
nothing calls this directly
no test coverage detected