Skip to content

Commit

Permalink
another compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Dec 14, 2024
1 parent f0016fc commit 5e56ee6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Core/include/Acts/EventData/VectorMultiTrajectory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ class VectorMultiTrajectory final
Concepts::eigen_bases_have_same_num_rows<val_t, cov_t> &&
Concepts::eigen_base_is_square<cov_t> &&
Eigen::PlainObjectBase<val_t>::RowsAtCompileTime <=
static_cast<std::underlying_type_t<BoundIndices>>(eBoundSize))
toUnderlying(eBoundSize))
{
constexpr std::size_t measdim = val_t::RowsAtCompileTime;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,12 +620,11 @@ class MutablePodioTrackStateContainer final
const Eigen::DenseBase<val_t>& val,
const Eigen::DenseBase<cov_t>& cov)

requires(Eigen::PlainObjectBase<val_t>::RowsAtCompileTime > 0 &&
Eigen::PlainObjectBase<val_t>::RowsAtCompileTime <= eBoundSize &&
Eigen::PlainObjectBase<val_t>::RowsAtCompileTime ==
Eigen::PlainObjectBase<cov_t>::RowsAtCompileTime &&
Eigen::PlainObjectBase<cov_t>::RowsAtCompileTime ==
Eigen::PlainObjectBase<cov_t>::ColsAtCompileTime)
requires(Concepts::eigen_base_is_fixed_size<val_t> &&
Concepts::eigen_bases_have_same_num_rows<val_t, cov_t> &&
Concepts::eigen_base_is_square<cov_t> &&
Eigen::PlainObjectBase<val_t>::RowsAtCompileTime <=
toUnderlying(eBoundSize))
{
constexpr std::size_t measdim = val_t::RowsAtCompileTime;

Expand Down

0 comments on commit 5e56ee6

Please sign in to comment.