refactor: Fix clang-tidy warnings

This commit is contained in:
Lars Toenning
2025-06-04 19:56:23 +02:00
parent e348b22dbd
commit c11add9fb3
17 changed files with 216 additions and 251 deletions

View File

@@ -369,7 +369,7 @@ namespace swift::misc
m_originalTimestamps.clear();
QFile revisionFile(CFileUtils::appendFilePaths(m_basename, ".rev"));
if ((m_found = revisionFile.exists()))
if (m_found = revisionFile.exists(); m_found)
{
if (!revisionFile.open(QFile::ReadOnly | QFile::Text))
{