| 38 | |
| 39 | public: |
| 40 | THashMultiMap() |
| 41 | : rep(0, hasher(), key_equal()) |
| 42 | { |
| 43 | } |
| 44 | template <typename TAllocParam> |
| 45 | explicit THashMultiMap(TAllocParam* allocParam) |
| 46 | : rep(0, hasher(), key_equal(), allocParam) |
nothing calls this directly
no test coverage detected