From: Axel Naumann Date: Fri, 26 Aug 2011 14:06:12 +0000 (+0000) Subject: From Vassil Vassilev: unnamed decls cannot be removed from the lookup map. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=02368d0d1a778b73fd73600496fcde4557b2973f;p=clang From Vassil Vassilev: unnamed decls cannot be removed from the lookup map. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138631 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/DeclBase.cpp b/lib/AST/DeclBase.cpp index 43a1c24149..8b1acb1996 100644 --- a/lib/AST/DeclBase.cpp +++ b/lib/AST/DeclBase.cpp @@ -969,6 +969,9 @@ void DeclContext::removeDecl(Decl *D) { if (isa(D)) { NamedDecl *ND = cast(D); + // Remove only decls that have a name + if (!ND->getDeclName()) return; + StoredDeclsMap *Map = getPrimaryContext()->LookupPtr; if (!Map) return;