We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7c492 commit 9e77fe4Copy full SHA for 9e77fe4
Framework/Core/include/Framework/ASoA.h
@@ -1163,9 +1163,10 @@ struct TableIterator : IP, C... {
1163
template <typename... TA>
1164
void bindExternalIndices(TA*... current)
1165
{
1166
- ([this]<typename... Cs, typename TT>(framework::pack<Cs...>, TT* t){
+ ([this]<typename... Cs, typename TT>(framework::pack<Cs...>, TT* t) {
1167
(doSetCurrentIndexImpl<Cs>(t), ...);
1168
- }(framework::pack<C...>{}, current), ...);
+ }(framework::pack<C...>{}, current),
1169
+ ...);
1170
}
1171
1172
void bindExternalIndicesRaw(std::vector<o2::soa::Binding>&& bindings)
0 commit comments