Skip to content

Commit ec2208a

Browse files
committed
Fix macos compilation
1 parent 3d6a41d commit ec2208a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Octree.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Octree::Octree(double* x, double* y, double* z, size_t n)
100100
compute_max_depth(n, 10000);
101101
}
102102

103-
void Octree::compute_max_depth(uint64_t npts, size_t max_points_per_octant)
103+
void Octree::compute_max_depth(size_t npts, size_t max_points_per_octant)
104104
{
105105
// strategy to regulate the maximum depth of the octree
106106
double xsize = xmax-xmin;

0 commit comments

Comments
 (0)