From 2475911ac72b1e007e202ad181ff3b09f931f516 Mon Sep 17 00:00:00 2001 From: Chris Mower Date: Thu, 20 Jun 2019 14:37:46 +0100 Subject: [PATCH] [core] Minor fix --- exotica_core/src/planning_problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exotica_core/src/planning_problem.cpp b/exotica_core/src/planning_problem.cpp index 672eabe269..eccb9041d0 100644 --- a/exotica_core/src/planning_problem.cpp +++ b/exotica_core/src/planning_problem.cpp @@ -296,7 +296,7 @@ std::pair, std::vector> PlanningProblem::GetCostEvol int PlanningProblem::GetNumberOfIterations() const { - return static_cast(std::get<0>(GetCostEvolution())).size(); + return static_cast(std::get<0>(GetCostEvolution()).size()); } double PlanningProblem::GetCostEvolution(int index) const