| 11 | { |
| 12 | |
| 13 | Node::Tag Node::getTag() const |
| 14 | { |
| 15 | // obtain the right-most bit |
| 16 | return static_cast<Tag>(reinterpret_cast<ptrdiff_t>(m_childrenOrFirstChild) & 3); |
| 17 | } |
| 18 | |
| 19 | void Node::setTag(Tag tag) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected