forked from OSchip/llvm-project
Stmt.h: Tweak r273312 to avoid bool:1 to appease win32.
llvm-svn: 273343
This commit is contained in:
parent
0df0296974
commit
55195e6b89
|
@ -193,7 +193,7 @@ protected:
|
|||
unsigned : NumExprBits;
|
||||
|
||||
// When false, it must not have side effects.
|
||||
bool CleanupsHaveSideEffects : 1;
|
||||
unsigned CleanupsHaveSideEffects : 1;
|
||||
|
||||
unsigned NumObjects : 32 - 1 - NumExprBits;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue