Skip to content

Commit 16aa6ef

Browse files
committed
formatting
1 parent 046549f commit 16aa6ef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/Interpreter/IncrementalAction.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ bool InProcessPrintingASTConsumer::HandleTopLevelDecl(DeclGroupRef DGR) {
136136
for (Decl *D : DGR)
137137
if (auto *TLSD = llvm::dyn_cast<TopLevelStmtDecl>(D))
138138
if (TLSD && TLSD->isSemiMissing()) {
139-
auto ExprOrErr =
140-
Interp.convertExprToValue(cast<Expr>(TLSD->getStmt()));
139+
auto ExprOrErr = Interp.convertExprToValue(cast<Expr>(TLSD->getStmt()));
141140
if (llvm::Error E = ExprOrErr.takeError()) {
142141
llvm::logAllUnhandledErrors(std::move(E), llvm::errs(),
143142
"Value printing failed: ");

0 commit comments

Comments
 (0)