Skip to content

Commit a94e239

Browse files
committed
[clang][bytecode][NFC] Add missing LLVM_PREFERRED_TYPE to bitfield
1 parent d21b2e6 commit a94e239

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/AST/ByteCode/Descriptor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ struct InlineDescriptor {
9595
/// Flag indicating if the field is the active member of a union.
9696
LLVM_PREFERRED_TYPE(bool)
9797
unsigned IsActive : 1;
98-
/// Flat indicating if this field is in a union (even if nested).
99-
unsigned InUnion : 1;
98+
/// Flag indicating if this field is in a union (even if nested).
10099
LLVM_PREFERRED_TYPE(bool)
100+
unsigned InUnion : 1;
101101
/// Flag indicating if the field is mutable (if in a record).
102102
LLVM_PREFERRED_TYPE(bool)
103103
unsigned IsFieldMutable : 1;

0 commit comments

Comments
 (0)