| 22 | entries = NULL; |
| 23 | } |
| 24 | void init() |
| 25 | { |
| 26 | if(!entries) |
| 27 | { |
| 28 | entries = NULLC::construct<Node*>(bucketCount); |
| 29 | memset(entries, 0, sizeof(Node*) * bucketCount); |
| 30 | } |
| 31 | } |
| 32 | ~HashMap() |
| 33 | { |
| 34 | if(entries) |
no outgoing calls
no test coverage detected