From 4b99bae3bf2395f732eaadb9edc07690ae177f54 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 6 Feb 2009 22:58:38 +0000 Subject: [PATCH] Clean up an already-fixed FIXME git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63975 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaDecl.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 7ccc13c97d..bf16e1aeee 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -1682,14 +1682,8 @@ Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC, // Complain about this problem, and attempt to suggest close // matches (e.g., those that differ only in cv-qualifiers and // whether the parameter types are references). - DeclarationName CtxName; - if (DC->isRecord()) - CtxName = cast(DC)->getDeclName(); - else if (DC->isNamespace()) - CtxName = cast(DC)->getDeclName(); - // FIXME: global scope Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match) - << CtxName << D.getCXXScopeSpec().getRange(); + << cast(DC) << D.getCXXScopeSpec().getRange(); InvalidDecl = true; LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName, -- 2.40.0