Fix a few more clazy warnings

This commit is contained in:
Nicolas Werner 2023-06-03 01:51:36 +02:00
parent 681e9da668
commit 5fed4d21b1
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
2 changed files with 5 additions and 3 deletions

View file

@ -4424,7 +4424,9 @@ Cache::displayName(const QString &room_id, const QString &user_id)
static bool
isDisplaynameSafe(const std::string &s)
{
for (QChar c : QString::fromStdString(s)) {
const auto str = QString::fromStdString(s);
for (QChar c : str) {
if (c.isPrint() && !c.isSpace())
return false;
}