Skip to content

Commit 86e53ad

Browse files
committed
fixup! refactor inputsFromArgs; update concepts
1 parent 5cedfdc commit 86e53ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/include/Framework/AnalysisTask.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ template <int64_t BEGIN, int64_t END, int64_t STEP>
5959
static constexpr bool is_enumeration_v<Enumeration<BEGIN, END, STEP>> = true;
6060

6161
template <typename T>
62-
concept is_enumeration = is_enumeration_v<T>;
62+
concept is_enumeration = is_enumeration_v<std::decay_t<T>>;
6363

6464
// Helper struct which builds a DataProcessorSpec from
6565
// the contents of an AnalysisTask...

0 commit comments

Comments
 (0)