File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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) |
You can’t perform that action at this time.
0 commit comments