Skip to content

Commit

Permalink
Fix minor clang-tidy recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
RainerKuemmerle committed Jul 20, 2024
1 parent 6cbf21d commit d65afaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions g2o/solvers/cholmod/cholmod_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ class Cholmod {
};

bool factorize();
bool hasFactor() const;
[[nodiscard]] bool hasFactor() const;
void freeFactor();
bool simplifyFactor();

//! compute AMD ordering on the given SparseView, store into result
bool amd(SparseView& sparseView, int* result);

int choleskyNz() const;
[[nodiscard]] int choleskyNz() const;

void solve(double* x, double* b) const;

Expand Down

0 comments on commit d65afaa

Please sign in to comment.