Skip to content

Commit ea6901d

Browse files
committed
Manual clang-format
1 parent 3d3f8d9 commit ea6901d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flang/lib/Semantics/check-omp-structure.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3514,7 +3514,7 @@ bool OmpStructureChecker::CheckReductionOperator(
35143514
if (const auto *definedOp{std::get_if<parser::DefinedOpName>(&dOpr.u)}) {
35153515
std::string mangled{MangleDefinedOperator(definedOp->v.symbol->name())};
35163516
const Scope &scope{definedOp->v.symbol->owner()};
3517-
if (const Symbol * symbol{scope.FindSymbol(mangled)}) {
3517+
if (const Symbol *symbol{scope.FindSymbol(mangled)}) {
35183518
if (symbol->detailsIf<UserReductionDetails>()) {
35193519
return true;
35203520
}

flang/lib/Semantics/resolve-names.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1911,7 +1911,7 @@ void OmpVisitor::ProcessReductionSpecifier(
19111911

19121912
// Only process types we can find. There will be an error later on when
19131913
// a type isn't found.
1914-
if (const DeclTypeSpec * typeSpec{GetDeclTypeSpec()}) {
1914+
if (const DeclTypeSpec *typeSpec{GetDeclTypeSpec()}) {
19151915
reductionDetails->AddType(*typeSpec);
19161916

19171917
for (auto &nm : ompVarNames) {

0 commit comments

Comments
 (0)