| 136 | } |
| 137 | |
| 138 | int OwnerOfKey(const std::string& key) const { |
| 139 | std::unordered_map<std::string, int>::const_iterator it = owner_override.find(key); |
| 140 | if (it != owner_override.end()) { |
| 141 | return it->second; |
| 142 | } |
| 143 | return OwnerBySlot(HashSlot(key)); |
| 144 | } |
| 145 | }; |
| 146 | |
| 147 | struct NodeData { |
no test coverage detected