Skip to content

Commit

Permalink
Fixed pointer error in MeasurementColibrator.hxx
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Ferraro committed Jun 25, 2024
1 parent 662e347 commit 6090136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ACTSTracking/MeasurementCalibrator.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class MeasurementCalibrator {
template <typename parameters_t>
const Measurement& operator()(const SourceLink& sourceLink,
const parameters_t& /* parameters */) const {
assert((sourceLink.index() < m_measurements->size()) and
assert((sourceLink.index() < m_measurements.size()) and
"Source link index is outside the container bounds");
return m_measurements[sourceLink.index()];
}
Expand Down

0 comments on commit 6090136

Please sign in to comment.