We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f822db7 commit a308a55Copy full SHA for a308a55
clang-tools-extra/clang-tidy/readability/SuspiciousCallArgumentCheck.cpp
@@ -529,7 +529,6 @@ SuspiciousCallArgumentCheck::SuspiciousCallArgumentCheck(
529
for (StringRef Abbreviation : optutils::parseStringList(
530
Options.get("Abbreviations", DefaultAbbreviations))) {
531
auto KeyAndValue = Abbreviation.split("=");
532
- llvm::errs() << "'" << Abbreviation << "'\n";
533
assert(!KeyAndValue.first.empty() && !KeyAndValue.second.empty());
534
AbbreviationDictionary.insert(
535
std::make_pair(KeyAndValue.first, KeyAndValue.second.str()));
0 commit comments