From ea43d0f687391db08459ea43794ee97b93e654fa Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Thu, 10 Aug 2023 20:41:52 +0200 Subject: fix: fix more warnings Signed-off-by: Sefa Eyeoglu --- launcher/Version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'launcher/Version.h') diff --git a/launcher/Version.h b/launcher/Version.h index 659f8e54..df379082 100644 --- a/launcher/Version.h +++ b/launcher/Version.h @@ -63,7 +63,7 @@ class Version { struct Section { explicit Section(QString fullString) : m_fullString(std::move(fullString)) { - int cutoff = m_fullString.size(); + qsizetype cutoff = m_fullString.size(); for (int i = 0; i < m_fullString.size(); i++) { if (!m_fullString[i].isDigit()) { cutoff = i; -- cgit