song/StringFilter: use std::string::operator==
This commit is contained in:
@@ -34,6 +34,6 @@ StringFilter::Match(const char *s) const noexcept
|
||||
if (fold_case) {
|
||||
return fold_case.IsIn(s);
|
||||
} else {
|
||||
return StringIsEqual(s, value.c_str());
|
||||
return value == s;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user