[clang-tidy] Fix unintended change left in 12cb540529

This commit is contained in:
Nathan James 2022-05-10 21:06:17 +01:00
parent f822db7670
commit a308a55720

View file

@ -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()));