From: Douglas Gregor Date: Tue, 13 Jul 2010 15:57:00 +0000 (+0000) Subject: Properly add to 32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4b8f1171d699c56ba2b39aabf1d7cb4c38ce4f8;p=clang Properly add to 32 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108243 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/ExprCXX.h b/include/clang/AST/ExprCXX.h index 77b366ed01..b9553815d8 100644 --- a/include/clang/AST/ExprCXX.h +++ b/include/clang/AST/ExprCXX.h @@ -928,7 +928,7 @@ class CXXNewExpr : public Expr { // 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;