Skip to content

Commit 24c2040

Browse files
clang-format
1 parent b12d2c8 commit 24c2040

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

flang/include/flang/Evaluate/check-expression.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

flang/lib/Evaluate/check-expression.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()) {

0 commit comments

Comments
 (0)