Skip to content

Commit a064177

Browse files
committed
format
1 parent ee5b059 commit a064177

File tree

1 file changed

+5
-4
lines changed
  • Framework/Core/include/Framework

1 file changed

+5
-4
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1420,8 +1420,9 @@ struct PresliceBase : public Policy {
14201420
const std::string binding;
14211421

14221422
PresliceBase(expressions::BindingNode index_)
1423-
: Policy{PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey<T, OPT>(index_.name)},{binding, index_.name}}, {}}
1424-
{}
1423+
: Policy{PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey<T, OPT>(index_.name)}, {binding, index_.name}}, {}}
1424+
{
1425+
}
14251426

14261427
std::shared_ptr<arrow::Table> getSliceFor(int value, std::shared_ptr<arrow::Table> const& input, uint64_t& offset) const
14271428
{
@@ -1518,7 +1519,7 @@ auto doSliceByHelper(T const* table, gsl::span<const int64_t> const& selection)
15181519
}
15191520

15201521
template <soa::is_table T>
1521-
requires (!soa::is_filtered_table<T>)
1522+
requires(!soa::is_filtered_table<T>)
15221523
auto doSliceByHelper(T const* table, gsl::span<const int64_t> const& selection)
15231524
{
15241525
auto t = soa::Filtered<T>({table->asArrowTable()}, selection);
@@ -1576,7 +1577,7 @@ auto prepareFilteredSlice(T const* table, std::shared_ptr<arrow::Table> slice, u
15761577
}
15771578

15781579
template <typename T, typename C, bool OPT>
1579-
requires (o2::soa::is_binding_compatible_v<C, T>())
1580+
requires(o2::soa::is_binding_compatible_v<C, T>())
15801581
auto doFilteredSliceBy(T const* table, o2::framework::PresliceBase<C, framework::PreslicePolicySorted, OPT> const& container, int value)
15811582
{
15821583
if constexpr (OPT) {

0 commit comments

Comments
 (0)