From: Nico Weber Date: Mon, 22 Nov 2010 13:48:02 +0000 (+0000) Subject: Remove the other FIXME I added. This is covered by the Index test and not testable... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f27f03e215cbd7a7bdfb35a95e524c9eea8ba940;p=clang Remove the other FIXME I added. This is covered by the Index test and not testable via -ast-dump. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119971 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index 79fc198ab4..db02c78351 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -1083,8 +1083,6 @@ void Parser::ParseDeclarationSpecifiers(DeclSpec &DS, case tok::annot_typename: { if (Tok.getAnnotationValue()) { ParsedType T = getTypeAnnotation(Tok); - // FIXME: This should probably pass getAnnotationEndLoc() instead of - // Loc, but that breaks test/Index/recursive-cxx-member-calls.cpp. isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, T); } else