Skip to content

Commit bd36c07

Browse files
committed
rename isEnumeration -> is_enumeration
1 parent 7b4da70 commit bd36c07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/AnalysisTask.h

Lines changed: 2 additions & 2 deletions
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 isEnumeration = is_enumeration_v<T>;
62+
concept is_enumeration = is_enumeration_v<T>;
6363

6464
// Helper struct which builds a DataProcessorSpec from
6565
// the contents of an AnalysisTask...
@@ -154,7 +154,7 @@ struct AnalysisDataProcessorBuilder {
154154
([&name, &value, &eInfos, &inputs, &hash, &ai]() mutable {
155155
++ai;
156156
using T = std::decay_t<Args>;
157-
if constexpr (isEnumeration<T>) {
157+
if constexpr (is_enumeration<T>) {
158158
std::vector<ConfigParamSpec> inputMetadata;
159159
// FIXME: for the moment we do not support begin, end and step.
160160
DataSpecUtils::updateInputList(inputs, InputSpec{"enumeration", "DPL", "ENUM", 0, Lifetime::Enumeration, inputMetadata});

0 commit comments

Comments
 (0)