From: Steve Naroff Date: Sun, 5 Oct 2008 00:12:46 +0000 (+0000) Subject: Remove old diag that alerted the user to a limitation we no longer have:-) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=22aed6574fca08c483d366a501de089560ba5423;p=clang Remove old diag that alerted the user to a limitation we no longer have:-) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57086 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Driver/RewriteBlocks.cpp b/Driver/RewriteBlocks.cpp index b720768221..83fcc03aee 100644 --- a/Driver/RewriteBlocks.cpp +++ b/Driver/RewriteBlocks.cpp @@ -34,7 +34,6 @@ class RewriteBlocks : public ASTConsumer { Diagnostic &Diags; const LangOptions &LangOpts; unsigned RewriteFailedDiag; - unsigned NoNestedBlockCalls; ASTContext *Context; SourceManager *SM; @@ -172,8 +171,6 @@ RewriteBlocks::RewriteBlocks(std::string inFile, std::string outFile, CurMethodDef = 0; RewriteFailedDiag = Diags.getCustomDiagID(Diagnostic::Warning, "rewriting failed"); - NoNestedBlockCalls = Diags.getCustomDiagID(Diagnostic::Warning, - "Rewrite support for closure calls nested within closure blocks is incomplete"); } ASTConsumer *clang::CreateBlockRewriter(const std::string& InFile,