Skip to content

Commit 8dd344d

Browse files
authored
attempt to fix
1 parent 2507ed2 commit 8dd344d

File tree

1 file changed

+6
-6
lines changed
  • Framework/Core/include/Framework

1 file changed

+6
-6
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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...>) {

0 commit comments

Comments
 (0)