Skip to content

Commit 687213b

Browse files
author
git apple-llvm automerger
committed
Merge commit 'ff8a960ab1e3' from llvm.org/main into next
2 parents e6b9f38 + ff8a960 commit 687213b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Serialization/ASTReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11821,7 +11821,7 @@ void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) {
1182111821
unsigned NumFlags = Record.readInt();
1182211822
SmallVector<bool, 16> Flags;
1182311823
Flags.reserve(NumFlags);
11824-
for (unsigned I : llvm::seq<unsigned>(NumFlags))
11824+
for ([[maybe_unused]] unsigned I : llvm::seq<unsigned>(NumFlags))
1182511825
Flags.push_back(Record.readInt());
1182611826
C->setPrivateVariableReductionFlags(Flags);
1182711827
}

0 commit comments

Comments
 (0)