Skip to content

Commit

Permalink
Merge pull request #842 from RainerKuemmerle/rainer/strJoin
Browse files Browse the repository at this point in the history
Use strJoin instead of fmt::join
  • Loading branch information
RainerKuemmerle authored Nov 8, 2024
2 parents 11440dc + a5c21f0 commit 9aebe10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions g2o/core/optimizable_graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -808,10 +808,10 @@ bool OptimizableGraph::verifyInformationMatrices(bool verbose) const {
ids[i] = e->vertex(i)->id();
if (!isSymmetric)
G2O_WARN("Information Matrix for an edge is not symmetric: {}",
fmt::join(ids, " "));
strJoin(ids.begin(), ids.end(), " "));
else
G2O_WARN("Information Matrix for an edge is not SPD: {}",
fmt::join(ids, " "));
strJoin(ids.begin(), ids.end(), " "));
if (isSymmetric)
G2O_WARN("eigenvalues: {}", eigenSolver.eigenvalues().transpose());
}
Expand Down

0 comments on commit 9aebe10

Please sign in to comment.