From: Richard Smith Date: Fri, 21 Feb 2014 18:46:01 +0000 (+0000) Subject: Remove accidentally-committed debugging statement. Thanks to Faisal Vali for X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a982550b495c64781a685a97b21524c10ad1cc0;p=clang Remove accidentally-committed debugging statement. Thanks to Faisal Vali for spotting this! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201871 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 7f6a7adc58..f930e02b9c 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp @@ -1505,7 +1505,6 @@ struct DependencyChecker : RecursiveASTVisitor { } bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) { - llvm::errs() << "Found " << ParmDepth << " vs " << Depth << "\n"; if (ParmDepth >= Depth) { Match = true; MatchLoc = Loc;