File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -1585,15 +1585,18 @@ class TemplateTemplateParmDecl final
1585
1585
// / the 'typename' keyword.
1586
1586
// /
1587
1587
// / If false, it was declared with the 'class' keyword.
1588
- bool Typename : 1 ;
1588
+ LLVM_PREFERRED_TYPE (bool )
1589
+ unsigned Typename : 1 ;
1589
1590
1590
1591
// / Whether this parameter is a parameter pack.
1591
- bool ParameterPack : 1 ;
1592
+ LLVM_PREFERRED_TYPE (bool )
1593
+ unsigned ParameterPack : 1 ;
1592
1594
1593
1595
// / Whether this template template parameter is an "expanded"
1594
1596
// / parameter pack, meaning that it is a pack expansion and we
1595
1597
// / already know the set of template parameters that expansion expands to.
1596
- bool ExpandedParameterPack : 1 ;
1598
+ LLVM_PREFERRED_TYPE (bool )
1599
+ unsigned ExpandedParameterPack : 1 ;
1597
1600
1598
1601
// / The number of parameters in an expanded parameter pack.
1599
1602
unsigned NumExpandedParams = 0 ;
You can’t perform that action at this time.
0 commit comments