r201871 - Remove accidentally-committed debugging statement. Thanks to Faisal Vali for
Richard Smith
richard-llvm at metafoo.co.uk
Fri Feb 21 10:46:01 PST 2014
Author: rsmith
Date: Fri Feb 21 12:46:01 2014
New Revision: 201871
URL: http://llvm.org/viewvc/llvm-project?rev=201871&view=rev
Log:
Remove accidentally-committed debugging statement. Thanks to Faisal Vali for
spotting this!
Modified:
cfe/trunk/lib/Sema/SemaTemplate.cpp
Modified: cfe/trunk/lib/Sema/SemaTemplate.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaTemplate.cpp?rev=201871&r1=201870&r2=201871&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaTemplate.cpp (original)
+++ cfe/trunk/lib/Sema/SemaTemplate.cpp Fri Feb 21 12:46:01 2014
@@ -1505,7 +1505,6 @@ struct DependencyChecker : RecursiveASTV
}
bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
- llvm::errs() << "Found " << ParmDepth << " vs " << Depth << "\n";
if (ParmDepth >= Depth) {
Match = true;
MatchLoc = Loc;
More information about the cfe-commits
mailing list