Skip to content

Commit d5545da

Browse files
committed
DPL Analysis: fix process functions skipped due to malformed check
1 parent 63e5c61 commit d5545da

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
@@ -638,7 +638,7 @@ DataProcessorSpec adaptAnalysisTask(ConfigContext const& ctx, Args&&... args)
638638
// execute optional process()
639639
homogeneous_apply_refs_sized<numElements>(
640640
[&pc, &expressionInfos, &task, &slices](auto& x) {
641-
if constexpr (is_process_configurable<decltype(x)>) {
641+
if constexpr (is_process_configurable<std::decay_t<decltype(x)>>) {
642642
if (x.value == true) {
643643
AnalysisDataProcessorBuilder::invokeProcess(*task.get(), pc.inputs(), x.process, expressionInfos, slices);
644644
return true;

0 commit comments

Comments
 (0)