File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -167,8 +167,8 @@ std::optional<parser::Message> CheckStatementFunction(
167167// argument may need copy-in operation and the second Boolean specifies whether
168168// copy-out may be necessary. This function works with implicit interface
169169// procedures.
170- std::pair<bool , bool > MayNeedCopyInOut (const ActualArgument &,
171- FoldingContext &);
170+ std::pair<bool , bool > MayNeedCopyInOut (
171+ const ActualArgument &, FoldingContext &);
172172
173173// Returns a pair of Booleans. The first boolean specifies whether given actual
174174// and dummy argument pair may need copy-in operation for the actual argument,
Original file line number Diff line number Diff line change @@ -1446,8 +1446,8 @@ std::optional<parser::Message> CheckStatementFunction(
14461446 return StmtFunctionChecker{sf, context}(expr);
14471447}
14481448
1449- std::pair<bool , bool > MayNeedCopyInOut (const ActualArgument &actual,
1450- FoldingContext &fc) {
1449+ std::pair<bool , bool > MayNeedCopyInOut (
1450+ const ActualArgument &actual, FoldingContext &fc) {
14511451 bool mayNeedCopyIn{false };
14521452 bool mayNeedCopyOut{false };
14531453 if (actual.isAlternateReturn ()) {
You can’t perform that action at this time.
0 commit comments