Skip to content

Commit a68da09

Browse files
committed
fix
1 parent 7d8e3a6 commit a68da09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/src/AnalysisSupportHelpers.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void AnalysisSupportHelpers::addMissingOutputsToSpawner(std::vector<OutputSpec>
140140
requestedSpecials |
141141
views::filter_not_matching(providedSpecials) | // filter the inputs that are already provided
142142
views::input_to_output_specs() |
143-
sinks::append_to(publisher.outputs); // append them to the publisher outputs
143+
sinks::append_to{publisher.outputs}; // append them to the publisher outputs
144144

145145
std::vector<InputSpec> additionalInputs;
146146
for (auto& input : requestedSpecials | views::filter_not_matching(providedSpecials)) {
@@ -170,7 +170,7 @@ void AnalysisSupportHelpers::addMissingOutputsToBuilder(std::vector<InputSpec> c
170170
sinks::update_input_list{additionalInputs}; // store into a temporary
171171
}
172172

173-
additionalInputs | sinks::update_input_list(publisher.inputs); // update publisher inputs
173+
additionalInputs | sinks::update_input_list{publisher.inputs}; // update publisher inputs
174174
// FIXME: until we have a single list of pairs
175175
additionalInputs |
176176
views::partial_match_filter(AODOrigins) |

0 commit comments

Comments
 (0)