We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2132ccb commit 0c6e54bCopy full SHA for 0c6e54b
clang/lib/Sema/SemaCast.cpp
@@ -3283,8 +3283,8 @@ void CastOperation::CheckBuiltinBitCast() {
3283
CharUnits SourceSize = Self.Context.getTypeSizeInChars(SrcType);
3284
if (DestSize != SourceSize) {
3285
Self.Diag(OpRange.getBegin(), diag::err_bit_cast_type_size_mismatch)
3286
- << SrcType << (int)SourceSize.getQuantity()
3287
- << DestType << (int)DestSize.getQuantity();
+ << SrcType << (int)SourceSize.getQuantity() << DestType
+ << (int)DestSize.getQuantity();
3288
SrcExpr = ExprError();
3289
return;
3290
}
0 commit comments