aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-10-13 20:07:36 +0000
committerDouglas Gregor <dgregor@apple.com>2010-10-13 20:07:36 +0000
commit43c0a4cae05cf78225d5996cf7d62d7a133d665c (patch)
tree4d41535286f3c2dc08f82d58d751b0ba16cecd23
parent3a43d8df596a0af13379c3d2a78e2f7e7b156f30 (diff)
Update Type::BitsRemainingInType
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116423 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h
index 019682d093..b8d5964449 100644
--- a/include/clang/AST/Type.h
+++ b/include/clang/AST/Type.h
@@ -819,7 +819,7 @@ protected:
/// any local or unnamed types.
virtual std::pair<Linkage, bool> getLinkageUnnamedLocalImpl() const;
- enum { BitsRemainingInType = 19 };
+ enum { BitsRemainingInType = 17 };
// silence VC++ warning C4355: 'this' : used in base member initializer list
Type *this_() { return this; }