[cfe-commits] r108243 - /cfe/trunk/include/clang/AST/ExprCXX.h

Douglas Gregor dgregor at apple.com
Tue Jul 13 08:57:00 PDT 2010


Author: dgregor
Date: Tue Jul 13 10:57:00 2010
New Revision: 108243

URL: http://llvm.org/viewvc/llvm-project?rev=108243&view=rev
Log:
Properly add to 32

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

Modified: cfe/trunk/include/clang/AST/ExprCXX.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExprCXX.h?rev=108243&r1=108242&r2=108243&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ExprCXX.h (original)
+++ cfe/trunk/include/clang/AST/ExprCXX.h Tue Jul 13 10:57:00 2010
@@ -928,7 +928,7 @@
   // Do we allocate an array? If so, the first SubExpr is the size expression.
   bool Array : 1;
   // The number of placement new arguments.
-  unsigned NumPlacementArgs : 14;
+  unsigned NumPlacementArgs : 15;
   // The number of constructor arguments. This may be 1 even for non-class
   // types; use the pseudo copy constructor.
   unsigned NumConstructorArgs : 14;





More information about the cfe-commits mailing list