Skip to content

Commit b227dd1

Browse files
committed
Please consider the following formatting changes
1 parent ec23d75 commit b227dd1

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

  • Framework/Core/include/Framework

Framework/Core/include/Framework/ASoA.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1779,15 +1779,13 @@ template <typename T>
17791779
concept PersistentColumn = std::is_same_v<typename T::persistent, std::true_type>;
17801780

17811781
template <typename... Cs>
1782-
std::array<arrow::ChunkedArray*, sizeof...(Cs)> getArrowColumns(arrow::Table* table, framework::pack<Cs...>)
1783-
requires(PersistentColumn<Cs> && ...)
1782+
std::array<arrow::ChunkedArray*, sizeof...(Cs)> getArrowColumns(arrow::Table* table, framework::pack<Cs...>) requires(PersistentColumn<Cs>&&...)
17841783
{
17851784
return std::array<arrow::ChunkedArray*, sizeof...(Cs)>{o2::soa::getIndexFromLabel(table, Cs::columnLabel())...};
17861785
}
17871786

17881787
template <typename... Cs>
1789-
std::array<std::shared_ptr<arrow::Array>, sizeof...(Cs)> getChunks(arrow::Table* table, framework::pack<Cs...>, uint64_t ci)
1790-
requires(PersistentColumn<Cs> && ...)
1788+
std::array<std::shared_ptr<arrow::Array>, sizeof...(Cs)> getChunks(arrow::Table* table, framework::pack<Cs...>, uint64_t ci) requires(PersistentColumn<Cs>&&...)
17911789
{
17921790
return std::array<std::shared_ptr<arrow::Array>, sizeof...(Cs)>{o2::soa::getIndexFromLabel(table, Cs::columnLabel())->chunk(ci)...};
17931791
}

0 commit comments

Comments
 (0)