diff --git a/Framework/Core/include/Framework/ASoA.h b/Framework/Core/include/Framework/ASoA.h index ce677e6df4b4a..93be077b1d6ef 100644 --- a/Framework/Core/include/Framework/ASoA.h +++ b/Framework/Core/include/Framework/ASoA.h @@ -1420,8 +1420,9 @@ struct PresliceBase : public Policy { const std::string binding; PresliceBase(expressions::BindingNode index_) - : Policy{PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey(index_.name)},{binding, index_.name}}, {}} - {} + : Policy{PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey(index_.name)}, {binding, index_.name}}, {}} + { + } std::shared_ptr getSliceFor(int value, std::shared_ptr const& input, uint64_t& offset) const { @@ -1518,7 +1519,7 @@ auto doSliceByHelper(T const* table, gsl::span const& selection) } template - requires (!soa::is_filtered_table) + requires(!soa::is_filtered_table) auto doSliceByHelper(T const* table, gsl::span const& selection) { auto t = soa::Filtered({table->asArrowTable()}, selection); @@ -1576,7 +1577,7 @@ auto prepareFilteredSlice(T const* table, std::shared_ptr slice, u } template - requires (o2::soa::is_binding_compatible_v()) + requires(o2::soa::is_binding_compatible_v()) auto doFilteredSliceBy(T const* table, o2::framework::PresliceBase const& container, int value) { if constexpr (OPT) {