diff --git a/src/orm/utils/string.cpp b/src/orm/utils/string.cpp index 164e163ca..3b6637891 100644 --- a/src/orm/utils/string.cpp +++ b/src/orm/utils/string.cpp @@ -121,8 +121,7 @@ QString String::stripTags(QString string) QString::size_type posStart = 0; QString::size_type from = 0; - while ((posStart = string.indexOf(LT_C, from, Qt::CaseInsensitive)) != -1 - ) { + while ((posStart = string.indexOf(LT_C, from, Qt::CaseInsensitive)) != -1) { const auto posEnd = string.indexOf(GT_C, posStart + 1, Qt::CaseInsensitive); // Nothing to do, the > char not found