File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1211,13 +1211,13 @@ struct TableIterator : IP, C... {
12111211 void bind ()
12121212 {
12131213 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 {});
1214+ ([this ]() {
1215+ if constexpr (soa::is_persistent_column<C >) {
1216+ C ::mColumnIterator .mCurrentPos = &this ->mRowIndex ;
1217+ } else if constexpr (soa::is_dynamic_column<C >) {
1218+ bindDynamicColumn<C >(typename C ::bindings_t {});
12191219 }
1220- }. template operator ()<C> (),
1220+ }(),
12211221 ...);
12221222
12231223 if constexpr (has_index<C...>) {
You can’t perform that action at this time.
0 commit comments