| 722 | typedef value_type* Value; |
| 723 | |
| 724 | InnerMap(size_type n, hasher h, Allocator alloc) |
| 725 | : hasher(h), |
| 726 | num_elements_(0), |
| 727 | seed_(Seed()), |
| 728 | table_(NULL), |
| 729 | alloc_(alloc) { |
| 730 | n = TableSize(n); |
| 731 | table_ = CreateEmptyTable(n); |
| 732 | num_buckets_ = index_of_first_non_null_ = n; |
| 733 | } |
| 734 | |
| 735 | ~InnerMap() { |
| 736 | if (table_ != NULL) { |
nothing calls this directly
no outgoing calls
no test coverage detected