]> granicus.if.org Git - clang/commitdiff
Remove accidentally-committed debugging statement. Thanks to Faisal Vali for
authorRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 21 Feb 2014 18:46:01 +0000 (18:46 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 21 Feb 2014 18:46:01 +0000 (18:46 +0000)
spotting this!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201871 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaTemplate.cpp

index 7f6a7adc5891d7033e84726fcdf46d172a38a1b3..f930e02b9cf606677fa60b7ea0baf8da2aea24ad 100644 (file)
@@ -1505,7 +1505,6 @@ struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
   }
 
   bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
-    llvm::errs() << "Found " << ParmDepth << " vs " << Depth << "\n";
     if (ParmDepth >= Depth) {
       Match = true;
       MatchLoc = Loc;