Skip to content

Commit c878bbd

Browse files
committed
clang-format
1 parent 06d766c commit c878bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Analysis/ReachableCode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) {
458458
// the coroutine statement. `Block` is the CFGBlock containing the `DeadStmt`.
459459
static bool isInCoroutineStmt(const Stmt* DeadStmt, const CFGBlock *Block) {
460460
// The coroutine statement, co_return, co_await, or co_yield.
461-
const Stmt* CoroStmt = nullptr;
461+
const Stmt *CoroStmt = nullptr;
462462
// Find the first coroutine statement after the DeadStmt in the block.
463463
bool AfterDeadStmt = false;
464464
for (CFGBlock::const_iterator I = Block->begin(), E = Block->end(); I != E;

0 commit comments

Comments
 (0)