forked from OSchip/llvm-project
[clang-tidy] Fix unintended change left in 12cb540529
This commit is contained in:
parent
f822db7670
commit
a308a55720
|
@ -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()));
|
||||
|
|
Loading…
Reference in New Issue