| 118 | }; |
| 119 | |
| 120 | struct DictionaryKeyHasher |
| 121 | { |
| 122 | size_t operator()(const DictionaryKey& k)const |
| 123 | { |
| 124 | return k.HashKey; |
| 125 | } |
| 126 | }; |
| 127 | |
| 128 | template <typename Value> |
| 129 | using Dictionary = std::unordered_map<DictionaryKey, Value, DictionaryKeyHasher>; |
nothing calls this directly
no outgoing calls
no test coverage detected