]> granicus.if.org Git - clang/commitdiff
Remove unused field.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 29 May 2013 19:51:12 +0000 (19:51 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 29 May 2013 19:51:12 +0000 (19:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182874 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/ASTContext.h
lib/AST/ASTContext.cpp

index b69a4f4525d843f9b630884cb1b945af1d9b18bd..88a629777547c540ac7bbafb42f0c84bc645365a 100644 (file)
@@ -2218,9 +2218,6 @@ private:
   // but we include it here so that ASTContext can quickly deallocate them.
   llvm::PointerIntPair<StoredDeclsMap*,1> LastSDM;
 
-  /// \brief A counter used to uniquely identify "blocks".
-  mutable unsigned int UniqueBlockByRefTypeID;
-  
   friend class DeclContext;
   friend class DeclarationNameTable;
   void ReleaseDeclContextMaps();
index 946d3df86c2be00884cf3b49896ab9a41174b4d3..c1f31529b3de3c77bc05015fe7a0de42f697ab08 100644 (file)
@@ -716,8 +716,7 @@ ASTContext::ASTContext(LangOptions& LOpts, SourceManager &SM,
     ExternalSource(0), Listener(0),
     Comments(SM), CommentsLoaded(false),
     CommentCommandTraits(BumpAlloc, LOpts.CommentOpts),
-    LastSDM(0, 0),
-    UniqueBlockByRefTypeID(0)
+    LastSDM(0, 0)
 {
   if (size_reserve > 0) Types.reserve(size_reserve);
   TUDecl = TranslationUnitDecl::Create(*this);