diff --git a/clang-tools-extra/clang-tidy/readability/SuspiciousCallArgumentCheck.cpp b/clang-tools-extra/clang-tidy/readability/SuspiciousCallArgumentCheck.cpp index d7066fa6ca1c..f2d8fe51707b 100644 --- a/clang-tools-extra/clang-tidy/readability/SuspiciousCallArgumentCheck.cpp +++ b/clang-tools-extra/clang-tidy/readability/SuspiciousCallArgumentCheck.cpp @@ -529,7 +529,6 @@ SuspiciousCallArgumentCheck::SuspiciousCallArgumentCheck( for (StringRef Abbreviation : optutils::parseStringList( Options.get("Abbreviations", DefaultAbbreviations))) { auto KeyAndValue = Abbreviation.split("="); - llvm::errs() << "'" << Abbreviation << "'\n"; assert(!KeyAndValue.first.empty() && !KeyAndValue.second.empty()); AbbreviationDictionary.insert( std::make_pair(KeyAndValue.first, KeyAndValue.second.str()));