! returns base node pointer */
| 187 | |
| 188 | /*! returns base node pointer */ |
| 189 | __forceinline BaseNode_t<NodeRefPtr,N>* baseNode() |
| 190 | { |
| 191 | assert(!isLeaf()); |
| 192 | return (BaseNode_t<NodeRefPtr,N>*)(ptr & ~(size_t)align_mask); |
| 193 | } |
| 194 | __forceinline const BaseNode_t<NodeRefPtr,N>* baseNode() const |
| 195 | { |
| 196 | assert(!isLeaf()); |
no outgoing calls
no test coverage detected