Skip to content

Commit

Permalink
fixup! refactor inputsFromArgs; update concepts
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin committed Jan 9, 2025
1 parent bcafe46 commit 85bc38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/AnalysisTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ template <int64_t BEGIN, int64_t END, int64_t STEP>
static constexpr bool is_enumeration_v<Enumeration<BEGIN, END, STEP>> = true;

template <typename T>
concept is_enumeration = is_enumeration_v<T>;
concept is_enumeration = is_enumeration_v<std::decay_t<T>>;

// Helper struct which builds a DataProcessorSpec from
// the contents of an AnalysisTask...
Expand Down

0 comments on commit 85bc38c

Please sign in to comment.