Skip to content

Commit

Permalink
rename sig
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger committed Sep 6, 2024
1 parent 9af3591 commit e52ad68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Utilities/Helpers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ std::vector<const T*> unpack_shared_const_vector(
///
/// @return An array containing the first `kDIM` elements of the vector.
template <std::size_t kDIM, typename value_t>
std::array<value_t, kDIM> to_array(const std::vector<value_t>& vecvals) {
std::array<value_t, kDIM> toArray(const std::vector<value_t>& vecvals) {
std::array<value_t, kDIM> arr = {};
std::copy_n(vecvals.begin(), std::min(vecvals.size(), kDIM), arr.begin());
return arr;
Expand Down

0 comments on commit e52ad68

Please sign in to comment.