Skip to content

Commit 3d926b3

Browse files
committed
Fix after rebase
1 parent 616bfb2 commit 3d926b3

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2186,7 +2186,7 @@ typename C::type getSingleRowData(arrow::Table*, T& rowIterator, uint64_t ci = s
21862186
if (globalIndex != std::numeric_limits<uint64_t>::max() && globalIndex != *std::get<0>(rowIterator.getIndices())) {
21872187
rowIterator.setCursor(globalIndex);
21882188
}
2189-
return static_cast<C>(rowIterator).get();
2189+
return rowIterator.template getDynamicColumn<C>();
21902190
}
21912191

21922192
template <typename T, soa::is_index_column C>

0 commit comments

Comments
 (0)