chore: fix some codeql warnings (#3840)

This commit is contained in:
Tayou 2025-06-06 14:19:27 +02:00 committed by GitHub
commit a17ea196c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 72 additions and 26 deletions

View file

@ -69,7 +69,9 @@ class LinkTask : public Task {
}
FS::create_link* m_lnk;
[[maybe_unused]] bool m_useHard = false;
#if defined Q_OS_WIN32
bool m_useHard = false;
#endif
bool m_linkRecursive = true;
};