Skip to content

Commit 0378a5f

Browse files
clang-format
1 parent 3198e90 commit 0378a5f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

flang/lib/Evaluate/call.cpp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,11 @@ void ProcedureRef::DetermineCopyInOut() {
312312
else {
313313
processedKeywords.insert(actualName);
314314
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()) {
319320
DetermineCopyInOutArgument(*procInfo, *actual, *it);
320321
}
321322
}
@@ -327,8 +328,8 @@ void ProcedureRef::DetermineCopyInOut() {
327328
}
328329
else {
329330
// Positional argument processing
330-
DetermineCopyInOutArgument(*procInfo, *actual,
331-
procInfo->dummyArguments[index]);
331+
DetermineCopyInOutArgument(
332+
*procInfo, *actual, procInfo->dummyArguments[index]);
332333
}
333334

334335
++index;

0 commit comments

Comments
 (0)