File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -323,18 +323,18 @@ void ProcedureRef::DetermineCopyInOut() {
323
323
}
324
324
if (actual->keyword ()) {
325
325
seenKeyword = true ;
326
- auto actualName = actual->keyword ()->ToString ();
326
+ auto actualName{ actual->keyword ()->ToString ()} ;
327
327
if (processedKeywords.find (actualName) != processedKeywords.end ()) {
328
328
// Actual arguments with duplicate keywords. Semantic analysis will
329
329
// deal with the error.
330
330
return ;
331
331
} else {
332
332
processedKeywords.insert (actualName);
333
- if (auto it = std::find_if (procInfo->dummyArguments .begin (),
333
+ if (auto it{ std::find_if (procInfo->dummyArguments .begin (),
334
334
procInfo->dummyArguments .end (),
335
335
[&](const characteristics::DummyArgument &dummy) {
336
336
return dummy.name == actualName;
337
- });
337
+ })} ;
338
338
it != procInfo->dummyArguments .end ()) {
339
339
DetermineCopyInOutArgument (*procInfo, *actual, *it, sc);
340
340
}
You can’t perform that action at this time.
0 commit comments