aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-07-13 15:57:00 +0000
committerDouglas Gregor <dgregor@apple.com>2010-07-13 15:57:00 +0000
commite4b8f1171d699c56ba2b39aabf1d7cb4c38ce4f8 (patch)
tree5348513fcbf42c6ff596a2491dbb73f0b48720e3
parent4bd40318cbea15310a37343db46de96c4fcc15e6 (diff)
Properly add to 32
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108243 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/ExprCXX.h2
1 files changed, 1 insertions, 1 deletions
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;