r273343 - Stmt.h: Tweak r273312 to avoid bool:1 to appease win32.

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 21 17:41:50 PDT 2016


Author: chapuni
Date: Tue Jun 21 19:41:50 2016
New Revision: 273343

URL: http://llvm.org/viewvc/llvm-project?rev=273343&view=rev
Log:
Stmt.h: Tweak r273312 to avoid bool:1 to appease win32.

Modified:
    cfe/trunk/include/clang/AST/Stmt.h

Modified: cfe/trunk/include/clang/AST/Stmt.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Stmt.h?rev=273343&r1=273342&r2=273343&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Stmt.h (original)
+++ cfe/trunk/include/clang/AST/Stmt.h Tue Jun 21 19:41:50 2016
@@ -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;
   };




More information about the cfe-commits mailing list