| 503 | struct SPMCSequentialHashMap |
| 504 | { |
| 505 | explicit SPMCSequentialHashMap(std::size_t initialSize) |
| 506 | : nextCapacity(initialSize), index(nullptr) |
| 507 | { |
| 508 | new_index(); |
| 509 | } |
| 510 | |
| 511 | ~SPMCSequentialHashMap() |
| 512 | { |
nothing calls this directly
no outgoing calls
no test coverage detected