| 21 | void clear() { from = to = nullptr; } |
| 22 | __forceinline bool empty() const { return from==to; } |
| 23 | __forceinline bool contains ( const PtrRange & r ) { return !empty() && !r.empty() && from<=r.from && to>=r.to; } |
| 24 | }; |
| 25 | |
| 26 | using loop_point = pair<void *,uint64_t>; |
no test coverage detected