Skip to content

Commit 796f5ef

Browse files
committed
Fix clang-format
1 parent 38e2027 commit 796f5ef

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

clang/lib/Sema/SemaExpr.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3600,10 +3600,9 @@ ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
36003600

36013601
ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, int64_t Val) {
36023602
unsigned IntSize = Context.getTargetInfo().getIntWidth();
3603-
return IntegerLiteral::Create(
3604-
Context,
3605-
llvm::APInt(IntSize, Val, /*isSigned=*/true),
3606-
Context.IntTy, Loc);
3603+
return IntegerLiteral::Create(Context,
3604+
llvm::APInt(IntSize, Val, /*isSigned=*/true),
3605+
Context.IntTy, Loc);
36073606
}
36083607

36093608
static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal,

0 commit comments

Comments
 (0)