diff options
Diffstat (limited to 'launcher/Version.h')
-rw-r--r-- | launcher/Version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Version.h b/launcher/Version.h index 101a907c..92bff9ba 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; |