From 7d7d5b152d5b5cf1eeb6ddca5997a66e19184fce Mon Sep 17 00:00:00 2001 From: George Pappas <52335337+gpappas93@users.noreply.github.com> Date: Fri, 16 Jan 2026 13:49:06 +0200 Subject: [PATCH] Fix type for traversal stack in fixedRadiusQuery.h Ensure compatibility with the BVH structure by using the correct node_t::Admin type from the bvh_t template. Signed-off-by: George Pappas --- cuBQL/traversal/fixedRadiusQuery.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuBQL/traversal/fixedRadiusQuery.h b/cuBQL/traversal/fixedRadiusQuery.h index 4ecb1eb..d18d51c 100644 --- a/cuBQL/traversal/fixedRadiusQuery.h +++ b/cuBQL/traversal/fixedRadiusQuery.h @@ -118,7 +118,7 @@ namespace cuBQL { bool dbg) { const int stackSize = 64; - bvh3f::node_t::Admin traversalStack[stackSize], *stackPtr = traversalStack; + typename bvh_t::node_t::Admin traversalStack[stackSize], *stackPtr = traversalStack; typename bvh_t::node_t::Admin node = bvh.nodes[0].admin; // ------------------------------------------------------------------ // traverse until there's nothing left to traverse: