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 8acd46e commit 548d92fCopy full SHA for 548d92f
clang/include/clang/Sema/SemaConcept.h
@@ -40,15 +40,15 @@ class MultiLevelTemplateArgumentList;
40
41
struct NormalizedConstraint {
42
43
- enum class ConstraintKind {
+ enum class ConstraintKind : unsigned char{
44
Atomic = 0,
45
ConceptId,
46
FoldExpanded,
47
Compound,
48
};
49
50
- enum CompoundConstraintKind { CCK_Conjunction, CCK_Disjunction };
51
- enum class FoldOperatorKind : unsigned int { And, Or };
+ enum CompoundConstraintKind : unsigned char { CCK_Conjunction, CCK_Disjunction };
+ enum class FoldOperatorKind : unsigned char { And, Or };
52
53
using OccurenceList = llvm::SmallBitVector;
54
0 commit comments