Skip to content

Commit

Permalink
Fix macos compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Romain committed Aug 28, 2024
1 parent 3d6a41d commit ec2208a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Octree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Octree::Octree(double* x, double* y, double* z, size_t n)
compute_max_depth(n, 10000);
}

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

0 comments on commit ec2208a

Please sign in to comment.