diff options
author | Nico Weber <nicolasweber@gmx.de> | 2010-11-22 13:12:28 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2010-11-22 13:12:28 +0000 |
commit | 13c13d4da880de70e6c9ee84a149a2b8e8eaaa3d (patch) | |
tree | daa7a6f455a819bf8c1f2d2a540f2cc0d9a87f07 /clang/lib/Parse/ParseExprCXX.cpp | |
parent | 7f8bb368ea78481d3cfd7126912a34f4d86fe826 (diff) | |
download | bcm5719-llvm-13c13d4da880de70e6c9ee84a149a2b8e8eaaa3d.tar.gz bcm5719-llvm-13c13d4da880de70e6c9ee84a149a2b8e8eaaa3d.zip |
Remove one I just added, add a more focused test for why the current code is correct.
llvm-svn: 119969
Diffstat (limited to 'clang/lib/Parse/ParseExprCXX.cpp')
-rw-r--r-- | clang/lib/Parse/ParseExprCXX.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseExprCXX.cpp b/clang/lib/Parse/ParseExprCXX.cpp index e027e28e9ad..1d09fe2a1af 100644 --- a/clang/lib/Parse/ParseExprCXX.cpp +++ b/clang/lib/Parse/ParseExprCXX.cpp @@ -912,8 +912,6 @@ void Parser::ParseCXXSimpleTypeSpecifier(DeclSpec &DS) { // type-name case tok::annot_typename: { - // FIXME: This should probably pass getAnnotationEndLoc() instead of Loc, - // but that breaks test/Index/recursive-cxx-member-calls.cpp. DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec, DiagID, getTypeAnnotation(Tok)); |