Suppress useless GCC "bitfield is too small to hold all values of enum class" warning.

This commit is contained in:
Richard Smith 2019-10-29 17:05:40 -07:00
parent 2b88b344f2
commit cbb3104b1c
1 changed files with 1 additions and 1 deletions

View File

@ -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