| 231 | } |
| 232 | |
| 233 | void PopRange(int N, void **start, void **end) { |
| 234 | SLL_PopRange(&list_, N, start, end); |
| 235 | ASSERT(length_ >= N); |
| 236 | length_ -= N; |
| 237 | if (length_ < lowater_) lowater_ = length_; |
| 238 | } |
| 239 | }; |
| 240 | |
| 241 | // Gets and returns an object from the central cache, and, if possible, |
no test coverage detected