diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-07-13 15:57:00 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-07-13 15:57:00 +0000 |
commit | f39cf26cb5082ee77855134caded822d8c5eeaa8 (patch) | |
tree | 6cdf1fb54728cea3456d9f0aa0513c9c9e442807 /clang | |
parent | f2753b3b4efbd01c91a7e6223cc06f7acb9eb31c (diff) | |
download | bcm5719-llvm-f39cf26cb5082ee77855134caded822d8c5eeaa8.tar.gz bcm5719-llvm-f39cf26cb5082ee77855134caded822d8c5eeaa8.zip |
Properly add to 32
llvm-svn: 108243
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/AST/ExprCXX.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/ExprCXX.h b/clang/include/clang/AST/ExprCXX.h index 77b366ed01c..b9553815d8e 100644 --- a/clang/include/clang/AST/ExprCXX.h +++ b/clang/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; |