From: NAKAMURA Takumi Date: Wed, 22 Jun 2016 00:41:50 +0000 (+0000) Subject: Stmt.h: Tweak r273312 to avoid bool:1 to appease win32. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=687c3eae0c4224d8b35ff0de9443e820fd9b7d0e;p=clang Stmt.h: Tweak r273312 to avoid bool:1 to appease win32. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@273343 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index 7549f88108..202ad330e9 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -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; };