Skip to content

Commit 37f5b04

Browse files
authored
DPL: Fix order of initialisation (#15155)
1 parent c1af82d commit 37f5b04

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2052,8 +2052,8 @@ class Table
20522052

20532053
Table(std::shared_ptr<arrow::Table> table, uint64_t offset = 0)
20542054
: mTable(table),
2055-
mEnd{table->num_rows()},
2056-
mOffset(offset)
2055+
mOffset(offset),
2056+
mEnd{table->num_rows()}
20572057
{
20582058
if (mTable->num_rows() == 0) {
20592059
for (size_t ci = 0; ci < framework::pack_size(columns_t{}); ++ci) {

0 commit comments

Comments
 (0)