Skip to content

Commit

Permalink
Fix remainder of #3284
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Dec 12, 2024
1 parent 57df869 commit 28eca68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neuron/container/soa_container.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ struct soa {

template <typename Callable, typename Tag, typename... RemainingTags>
Callable for_each_tag_vector_impl(Callable callable) const {
Callable tmp_callable = std::get<tag_index_v<Tag>>(m_data).template for_each_vector(
Callable tmp_callable = std::get<tag_index_v<Tag>>(m_data).template for_each_vector<>(
callable);
return for_each_tag_vector_impl<Callable, RemainingTags...>(tmp_callable);
}
Expand Down

0 comments on commit 28eca68

Please sign in to comment.