| 515 | |
| 516 | public: |
| 517 | THashTable() |
| 518 | : base_type(HashFcn(), ExtractKey(), EqualKey(), node_allocator_type()) |
| 519 | , buckets(nodep_allocator_type()) |
| 520 | , num_elements(0) |
| 521 | { |
| 522 | initialize_buckets(buckets, 0); |
| 523 | } |
| 524 | |
| 525 | THashTable(size_type n, const HashFcn& hf, const EqualKey& eql, const ExtractKey& ext) |
| 526 | : base_type(hf, ext, eql, node_allocator_type()) |
nothing calls this directly
no test coverage detected