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;
   };


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to