File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -312,10 +312,11 @@ void ProcedureRef::DetermineCopyInOut() {
312
312
else {
313
313
processedKeywords.insert (actualName);
314
314
if (auto it = std::find_if (procInfo->dummyArguments .begin (),
315
- procInfo->dummyArguments .end (),
316
- [&](const characteristics::DummyArgument &dummy) {
317
- return dummy.name == actualName;
318
- }); it != procInfo->dummyArguments .end ()) {
315
+ procInfo->dummyArguments .end (),
316
+ [&](const characteristics::DummyArgument &dummy) {
317
+ return dummy.name == actualName;
318
+ });
319
+ it != procInfo->dummyArguments .end ()) {
319
320
DetermineCopyInOutArgument (*procInfo, *actual, *it);
320
321
}
321
322
}
@@ -327,8 +328,8 @@ void ProcedureRef::DetermineCopyInOut() {
327
328
}
328
329
else {
329
330
// Positional argument processing
330
- DetermineCopyInOutArgument (*procInfo, *actual,
331
- procInfo->dummyArguments [index]);
331
+ DetermineCopyInOutArgument (
332
+ *procInfo, *actual, procInfo->dummyArguments [index]);
332
333
}
333
334
334
335
++index;
You can’t perform that action at this time.
0 commit comments