star-line

Structure for accelerating line importance sampling
git clone git://git.meso-star.fr/star-line.git
Log | Files | Refs | README | LICENSE

commit cbad96bb9d303f4897ab3acd323836459c73515c
parent 24262a180898b2ebd4dcbb8d3b36d6728d2c5a2f
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed,  8 Apr 2026 10:17:06 +0200

Fix a warning during compilation in Release mode

Diffstat:
Msrc/sln_tree.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/sln_tree.c b/src/sln_tree.c @@ -666,6 +666,7 @@ sln_node_get_child { ASSERT(node && ichild < sln_node_get_child_count(tree, node)); ASSERT(!sln_node_is_leaf(node)); + (void)tree; return node + node->offset + ichild; }