| 34 | |
| 35 | template<typename TABLE> |
| 36 | static void IncreaseTableCapacity(TABLE* table, uint32_t increment) |
| 37 | { |
| 38 | uint32_t capacity = table->Capacity() + increment; |
| 39 | table->SetCapacity((capacity*5)/7, capacity); |
| 40 | } |
| 41 | |
| 42 | struct ReverseHashContainer |
| 43 | { |
no test coverage detected