Skip to content

Commit

Permalink
Merge branch 'dev' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
larc committed Dec 8, 2023
2 parents 7a1573a + 5fc627d commit c9e683f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/gproshan/geodesics/geodesics_ptp.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ struct ptp_out_t
struct toplesets_t
{
const std::vector<index_t> & limits;
const index_t *const & index;
const index_t * index;
};

double parallel_toplesets_propagation_gpu(const ptp_out_t & ptp_out, const che * mesh, const std::vector<index_t> & sources, const toplesets_t & toplesets, const bool & coalescence = true, const bool & set_inf = true);
Expand Down
2 changes: 1 addition & 1 deletion src/gproshan/pointcloud/knn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ std::vector<index_t> grid::operator () (const point & p, int k) const
if(pos.x() == NIL || pos.y() == NIL || pos.z() == NIL)
continue;

const auto & iter = voxels.find(pos);
const auto iter = voxels.find(pos);
if(iter == end(voxels))
continue;

Expand Down

0 comments on commit c9e683f

Please sign in to comment.