Fix syntax errors in cpp_radix_tree (#13315)

This commit is contained in:
Yiming
2025-11-15 11:35:43 +08:00
committed by GitHub
parent 172c71a23d
commit 9b3fc186bc
@@ -156,7 +156,7 @@ struct RadixTree::Impl {
} }
}; };
for (const auto& [_, child] : m_root) { for (const auto& [_, child] : m_root) {
process_node(child.get()) process_node(child.get());
} }
while (!stack.empty()) { while (!stack.empty()) {
const auto node = stack.back(); const auto node = stack.back();