| 17 | } |
| 18 | |
| 19 | void Node::setTag(Tag tag) |
| 20 | { |
| 21 | auto itag = static_cast<int>(tag); |
| 22 | m_childrenOrFirstChild = reinterpret_cast<void *>( |
| 23 | (reinterpret_cast<ptrdiff_t>(m_childrenOrFirstChild) & ~(3)) | itag); |
| 24 | } |
| 25 | |
| 26 | NodeID *Node::getPtr() const |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected