summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaTemplate.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2014-02-21 18:46:01 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2014-02-21 18:46:01 +0000
commit2a982550b495c64781a685a97b21524c10ad1cc0 (patch)
tree218719780f3d7406095110043650a287d4731906 /lib/Sema/SemaTemplate.cpp
parent35fb7b1d4870c95dae801f5cb72b8cc9e203b26c (diff)
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
Diffstat (limited to 'lib/Sema/SemaTemplate.cpp')
-rw-r--r--lib/Sema/SemaTemplate.cpp1
1 files changed, 0 insertions, 1 deletions
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<DependencyChecker> {
}
bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
- llvm::errs() << "Found " << ParmDepth << " vs " << Depth << "\n";
if (ParmDepth >= Depth) {
Match = true;
MatchLoc = Loc;