Skip to content

Commit 7ef2e36

Browse files
committed
Formatting
1 parent 7f5e7ff commit 7ef2e36

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/Interpreter/InterpreterValuePrinter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,8 @@ class InterfaceKindVisitor
411411
}
412412

413413
InterfaceKind VisitReferenceType(const ReferenceType *Ty) {
414-
ExprResult AddrOfE = S.CreateBuiltinUnaryOp(SourceLocation(), UO_AddrOf, E->IgnoreImpCasts());
414+
ExprResult AddrOfE = S.CreateBuiltinUnaryOp(SourceLocation(), UO_AddrOf,
415+
E->IgnoreImpCasts());
415416
assert(!AddrOfE.isInvalid() && "Can not create unary expression");
416417
Args.push_back(AddrOfE.get());
417418
return InterfaceKind::NoAlloc;

0 commit comments

Comments
 (0)