chore: fix some codeql warnings

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2025-06-05 09:26:00 +03:00
parent 0136c2e82a
commit 7ea15c31a1
18 changed files with 72 additions and 26 deletions

View File

@@ -24,5 +24,5 @@ class ResourcePack : public DataPack {
/** Gets, respectively, the lower and upper versions supported by the set pack format. */
[[nodiscard]] std::pair<Version, Version> compatibleVersions() const override;
virtual QString directory() { return "/assets"; }
virtual QString directory() override { return "/assets"; }
};