Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger authored Jan 16, 2025
1 parent 8e40c90 commit bbc48ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/EventData/detail/CovarianceHelper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct CovarianceHelper {
return false;
}
Eigen::LLT<CovMatrix_t> lltCov(covariance);
return lltCov.info() == Eigen::Success ? true : false;
return lltCov.info() == Eigen::Success;
}
};

Expand Down

0 comments on commit bbc48ef

Please sign in to comment.