| 40 | |
| 41 | public: |
| 42 | THashMap() |
| 43 | : rep(0, hasher(), key_equal()) |
| 44 | { |
| 45 | } |
| 46 | template <class TAllocParam> |
| 47 | explicit THashMap(TAllocParam* allocParam, size_type n = 0) |
| 48 | : rep(n, hasher(), key_equal(), allocParam) |
nothing calls this directly
no test coverage detected