| 265 | |
| 266 | struct LeafBlocksVisitor { |
| 267 | bool operator()(shared_ptr<IndexNode> const&) { |
| 268 | return true; |
| 269 | } |
| 270 | |
| 271 | bool operator()(shared_ptr<LeafNode> const& leaf) { |
| 272 | leafBlockCount += 1 + parent->leafTailBlocks(leaf->self).size(); |
nothing calls this directly
no test coverage detected