@@ -191,7 +191,7 @@ struct Produces : WritingCursor<T> {
191191};
192192
193193template <typename T>
194- concept is_produces = requires (T t) { typename T::cursor_t ; typename T::persistent_table_t ; &T::cursor; };
194+ concept is_produces = requires (T t) { typename T::cursor_t ; typename T::persistent_table_t ; &T::cursor; };
195195
196196// / Use this to group together produces. Useful to separate them logically
197197// / or simply to stay within the 100 elements per Task limit.
@@ -572,7 +572,7 @@ struct OutputObj {
572572};
573573
574574template <typename T>
575- concept is_outputobj = requires (T t) { &T::setObject; std::same_as<decltype (t.object ), std::shared_ptr<typename T::obj_t >>; };
575+ concept is_outputobj = requires (T t) { &T::setObject; std::same_as<decltype (t.object ), std::shared_ptr<typename T::obj_t >>; };
576576
577577// / This helper allows you to fetch a Sevice from the context or
578578// / by using some singleton. This hopefully will hide the Singleton and
@@ -593,7 +593,7 @@ struct Service {
593593};
594594
595595template <typename T>
596- concept is_service = requires (T t) { std::same_as<decltype (t.service ), typename T::service_t *>; &T::operator ->;};
596+ concept is_service = requires (T t) { std::same_as<decltype (t.service ), typename T::service_t *>; &T::operator ->; };
597597
598598auto getTableFromFilter (soa::is_filtered_table auto const & table, soa::SelectionVector&& selection)
599599{
@@ -721,7 +721,7 @@ struct Partition {
721721};
722722
723723template <typename T>
724- concept is_partition = requires (T t) {&T::updatePlaceholders; std::same_as<decltype (t.filter ), expressions::Filter>; std::same_as<decltype (t.mFiltered ), std::unique_ptr<o2::soa::Filtered<typename T::content_t >>>;};
724+ concept is_partition = requires (T t) {&T::updatePlaceholders; std::same_as<decltype (t.filter ), expressions::Filter>; std::same_as<decltype (t.mFiltered ), std::unique_ptr<o2::soa::Filtered<typename T::content_t >>>; };
725725} // namespace o2::framework
726726
727727namespace o2 ::soa
0 commit comments