Skip to content

Commit

Permalink
Merge pull request #8 from stephomi/fix_namespace
Browse files Browse the repository at this point in the history
Fix header namespace closure
  • Loading branch information
jbikker authored Nov 2, 2024
2 parents ac6b5bd + 0a0acb3 commit a54054f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiny_bvh.h
Original file line number Diff line number Diff line change
Expand Up @@ -753,10 +753,10 @@ float BVH::IntersectAABB( const Ray& ray, const bvhvec3& aabbMin, const bvhvec3&
if (tmax >= tmin && tmin < ray.hit.t && tmax >= 0) return tmin; else return 1e30f;
}

#endif

} // namespace tinybvh

#endif

#endif

// EOF

0 comments on commit a54054f

Please sign in to comment.