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.
2 parents afbdc21 + b471c20 commit 6c618f3Copy full SHA for 6c618f3
Framework/Core/include/Framework/ASoA.h
@@ -1160,9 +1160,10 @@ struct TableIterator : IP, C... {
1160
template <typename... TA>
1161
void bindExternalIndices(TA*... current)
1162
{
1163
- ([this]<typename... Cs, typename TT>(framework::pack<Cs...>, TT* t){
+ ([this]<typename... Cs, typename TT>(framework::pack<Cs...>, TT* t) {
1164
(doSetCurrentIndexImpl<Cs>(t), ...);
1165
- }(framework::pack<C...>{}, current), ...);
+ }(framework::pack<C...>{}, current),
1166
+ ...);
1167
}
1168
1169
void bindExternalIndicesRaw(std::vector<o2::soa::Binding>&& bindings)
0 commit comments