mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-22621 Clang-Tidy: readability-string-compare
https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/clang-tidy/checks/readability/string-compare.html
This commit is contained in:
parent
ade671e252
commit
7c22ff7541
1 changed files with 1 additions and 1 deletions
|
@ -5711,7 +5711,7 @@ public:
|
|||
};
|
||||
|
||||
bool isKnownSourceForCLDR17099(const std::string& s) {
|
||||
if (s.compare("qaa-Cyrl-CH") == 0) {
|
||||
if (s == "qaa-Cyrl-CH") {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue