Skip to content

Commit 0c6e54b

Browse files
committed
fix formatting
1 parent 2132ccb commit 0c6e54b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Sema/SemaCast.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3283,8 +3283,8 @@ void CastOperation::CheckBuiltinBitCast() {
32833283
CharUnits SourceSize = Self.Context.getTypeSizeInChars(SrcType);
32843284
if (DestSize != SourceSize) {
32853285
Self.Diag(OpRange.getBegin(), diag::err_bit_cast_type_size_mismatch)
3286-
<< SrcType << (int)SourceSize.getQuantity()
3287-
<< DestType << (int)DestSize.getQuantity();
3286+
<< SrcType << (int)SourceSize.getQuantity() << DestType
3287+
<< (int)DestSize.getQuantity();
32883288
SrcExpr = ExprError();
32893289
return;
32903290
}

0 commit comments

Comments
 (0)