We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2507ed2 commit 8dd344dCopy full SHA for 8dd344d
1 file changed
Framework/Core/include/Framework/ASoA.h
@@ -1211,13 +1211,13 @@ struct TableIterator : IP, C... {
1211
void bind()
1212
{
1213
using namespace o2::soa;
1214
- ([this]<soa::is_column CL>() {
1215
- if constexpr (soa::is_persistent_column<CL>) {
1216
- CL::mColumnIterator.mCurrentPos = &this->mRowIndex;
1217
- } else if constexpr (soa::is_dynamic_column<CL>) {
1218
- bindDynamicColumn<CL>(typename CL::bindings_t{});
+ ([this]() {
+ if constexpr (soa::is_persistent_column<C>) {
+ C::mColumnIterator.mCurrentPos = &this->mRowIndex;
+ } else if constexpr (soa::is_dynamic_column<C>) {
+ bindDynamicColumn<C>(typename C::bindings_t{});
1219
}
1220
- }.template operator()<C>(),
+ }(),
1221
...);
1222
1223
if constexpr (has_index<C...>) {
0 commit comments