Skip to content

Commit 1802225

Browse files
committed
fixup! DPL Analysis: avoid base_of_template in concepts for column type identification
1 parent 05c289f commit 1802225

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
@@ -793,13 +793,13 @@ struct Index : o2::soa::IndexColumn<Index<START, END>> {
793793
};
794794

795795
template <typename C>
796-
concept is_indexing_column = requires (C& c) {
796+
concept is_indexing_column = requires(C& c) {
797797
c.rowIndices;
798798
c.rowOffsets;
799799
};
800800

801801
template <typename C>
802-
concept is_dynamic_column = requires (C& c) {
802+
concept is_dynamic_column = requires(C& c) {
803803
c.boundIterators;
804804
};
805805

0 commit comments

Comments
 (0)