Skip to content

Commit

Permalink
gcc warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Sep 11, 2024
1 parent d956063 commit 32a7617
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mola_metric_maps/src/NDT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,11 @@ double NDT::internal_computeObservationLikelihood(
}

double NDT::internal_computeObservationLikelihoodPointCloud3D(
const mrpt::poses::CPose3D& pc_in_map, const float* xs, const float* ys,
const float* zs, const std::size_t num_pts) const
[[maybe_unused]] const mrpt::poses::CPose3D& pc_in_map,
[[maybe_unused]] const float* xs, //
[[maybe_unused]] const float* ys, //
[[maybe_unused]] const float* zs, //
[[maybe_unused]] const std::size_t num_pts) const
{
MRPT_TRY_START

Expand Down

0 comments on commit 32a7617

Please sign in to comment.