From: Chandler Carruth Date: Sat, 13 Feb 2010 10:42:55 +0000 (+0000) Subject: Fix think-o, attributes can't come *within* the type of the variable. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd3194bedbaddadd21458e68ffe810b80d76b0b1;p=clang Fix think-o, attributes can't come *within* the type of the variable. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96099 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index 163088e91a..8285a1fdcf 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -746,7 +746,7 @@ VtableBuilder::layoutVirtualMemberFunctions(BaseSubobject Base, // Check if this virtual member function overrides a method in a primary // base. If this is the case, and the return type doesn't require adjustment // then we can just use the member function from the primary base. - if (const CXXMethodDecl ATTRIBUTE_UNUSED *OverriddenMD = + if (const CXXMethodDecl *OverriddenMD ATTRIBUTE_UNUSED = OverridesMethodInPrimaryBase(MD, PrimaryBases)) { assert(!ReturnTypeConversionRequiresAdjustment(MD, OverriddenMD) && "FIXME: Handle covariant thunks!");