From: Rafael Espindola Date: Fri, 23 Mar 2012 00:05:14 +0000 (+0000) Subject: Remove unused bits. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7608a8080bad7ee87a9a50015e9ca63fb214aba2;p=clang Remove unused bits. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153295 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index a260852e8a..81973a29c3 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -2704,13 +2704,6 @@ class EnumDecl : public TagDecl { /// information. MemberSpecializationInfo *SpecializationInfo; - // The number of positive and negative bits required by the - // enumerators are stored in the SubclassBits field. - enum { - NumBitsWidth = 8, - NumBitsMask = (1 << NumBitsWidth) - 1 - }; - EnumDecl(DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, bool Scoped, bool ScopedUsingClassTag, bool Fixed)