Skip to content

Commit

Permalink
Use strJoin instead of fmt::join
Browse files Browse the repository at this point in the history
Fix #825
  • Loading branch information
RainerKuemmerle committed Nov 8, 2024
1 parent 11440dc commit a5c21f0
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 a5c21f0

Please sign in to comment.