[clang-tidy] Remove debug logging.

llvm-svn: 293763
This commit is contained in:
Alexander Kornienko 2017-02-01 12:41:34 +00:00
parent 2cbaded5b5
commit b7a6ea3049
1 changed files with 0 additions and 5 deletions

View File

@ -79,11 +79,6 @@ void UseUsingCheck::check(const MatchFinder::MatchResult &Result) {
auto &Context = *Result.Context;
auto &SM = *Result.SourceManager;
if (auto *D = MatchedDecl->getUnderlyingType()->getAsCXXRecordDecl()) {
//TypeLoc TL = MatchedDecl->getTypeSourceInfo()->getTypeLoc();
llvm::errs() << D->getNameAsString() << "\n";
}
auto Diag =
diag(MatchedDecl->getLocStart(), "use 'using' instead of 'typedef'");