| 55 | return (reinterpret_cast<ptrdiff_t>(p) & 1) != 0; |
| 56 | } |
| 57 | forceinline void* |
| 58 | mark(void* p) { |
| 59 | assert(!marked(p)); |
| 60 | return reinterpret_cast<void*>(reinterpret_cast<ptrdiff_t>(p)+1); |
| 61 | } |
| 62 | forceinline void* |
| 63 | unmark(void* p) { |
| 64 | assert(marked(p)); |
no test coverage detected