File tree Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Expand file tree Collapse file tree 1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -116,19 +116,15 @@ void FrontendOptions::forAllOutputPaths(
116
116
else
117
117
fn (input.outputFilename ());
118
118
}
119
- (void )InputsAndOutputs.forEachInputProducingSupplementaryOutput (
120
- [&](const InputFile &inp) -> bool {
121
- const SupplementaryOutputPaths &outs =
122
- inp.getPrimarySpecificPaths ().SupplementaryOutputs ;
123
- const std::string *outputs[] = {&outs.ModuleOutputPath ,
124
- &outs.ModuleDocOutputPath ,
125
- &outs.ObjCHeaderOutputPath };
126
- for (const std::string *next : outputs) {
127
- if (!next->empty ())
128
- fn (*next);
129
- }
130
- return false ;
131
- });
119
+ const SupplementaryOutputPaths &outs =
120
+ input.getPrimarySpecificPaths ().SupplementaryOutputs ;
121
+ const std::string *outputs[] = {&outs.ModuleOutputPath ,
122
+ &outs.ModuleDocOutputPath ,
123
+ &outs.ObjCHeaderOutputPath };
124
+ for (const std::string *next : outputs) {
125
+ if (!next->empty ())
126
+ fn (*next);
127
+ }
132
128
}
133
129
134
130
const char *
You can’t perform that action at this time.
0 commit comments