Skip to content

Commit

Permalink
fix clang-format version
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Jul 14, 2019
1 parent 0eb50f6 commit 8fe7851
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/pf-localization/pf_localization_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ void do_pf_localization(
// Show 3D?
if (SHOW_PROGRESS_3D_REAL_TIME)
{
const auto[cov, meanPose] =
const auto [cov, meanPose] =
pdf.getCovarianceAndMean();

if (rawlogEntry >= 2)
Expand Down Expand Up @@ -850,7 +850,7 @@ void do_pf_localization(
expectedPose.distanceTo(odometryEstimation));
}

const auto[C, M] = pdf.getCovarianceAndMean();
const auto [C, M] = pdf.getCovarianceAndMean();
const auto current_pdf_gaussian =
typename pf2gauss_t<MONTECARLO_TYPE>::type(M, C);

Expand Down Expand Up @@ -978,7 +978,7 @@ void do_pf_localization(
odometryEstimation.y(), odometryEstimation.phi());
}

const auto[cov, meanPose] = pdf.getCovarianceAndMean();
const auto [cov, meanPose] = pdf.getCovarianceAndMean();

if ((!SAVE_STATS_ONLY && SCENE3D_FREQ > 0) ||
SHOW_PROGRESS_3D_REAL_TIME)
Expand Down

0 comments on commit 8fe7851

Please sign in to comment.