forked from OSchip/llvm-project
Suppress useless GCC "bitfield is too small to hold all values of enum class" warning.
This commit is contained in:
parent
2b88b344f2
commit
cbb3104b1c
|
@ -1238,7 +1238,7 @@ public:
|
|||
llvm::SmallPtrSet<SpecialMemberDecl, 4> SpecialMembersBeingDeclared;
|
||||
|
||||
/// Kinds of defaulted comparison operator functions.
|
||||
enum class DefaultedComparisonKind {
|
||||
enum class DefaultedComparisonKind : unsigned char {
|
||||
/// This is not a defaultable comparison operator.
|
||||
None,
|
||||
/// This is an operator== that should be implemented as a series of
|
||||
|
|
Loading…
Reference in New Issue