]> granicus.if.org Git - clang/commitdiff
Removing an outdated FIXME; try block attributes are parsed with the rest of the...
authorAaron Ballman <aaron@aaronballman.com>
Sat, 20 Dec 2014 01:54:07 +0000 (01:54 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Sat, 20 Dec 2014 01:54:07 +0000 (01:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@224662 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseStmt.cpp

index 752baf663bb2fbedc6ffe972715693bc7bcd3a7a..2ecfcf80ef31fc69040f784a8acdfb9a2e400bfb 100644 (file)
@@ -1959,7 +1959,6 @@ StmtResult Parser::ParseCXXTryBlock() {
 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) {
   if (Tok.isNot(tok::l_brace))
     return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace);
-  // FIXME: Possible draft standard bug: attribute-specifier should be allowed?
 
   StmtResult TryBlock(ParseCompoundStatement(/*isStmtExpr=*/false,
                       Scope::DeclScope | Scope::TryScope |