| 86 | } |
| 87 | |
| 88 | void BitMap::release(const int index, const int count) |
| 89 | { |
| 90 | for (int i = 0; i < count; ++i) |
| 91 | { |
| 92 | set(index + i, false); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | char *BitMap::getBitmap() |
| 97 | { |
nothing calls this directly
no outgoing calls
no test coverage detected