aboutsummaryrefslogtreecommitdiff
path: root/launcher/Version.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@users.noreply.github.com>2021-12-30 20:00:45 +0100
committerGitHub <noreply@github.com>2021-12-30 20:00:45 +0100
commit3efcccf334e28d03605dd0597f53f900105cf04b (patch)
treeecafd89c7eb90d04f428c907da86c7d6b134c166 /launcher/Version.cpp
parent5e909a4e852a5bf3ba9dec9081b4839773bfc0ce (diff)
parentf42c3a953c15b01632131435e4885f9acc3b1f1a (diff)
downloadPrismLauncher-3efcccf334e28d03605dd0597f53f900105cf04b.tar.gz
PrismLauncher-3efcccf334e28d03605dd0597f53f900105cf04b.tar.bz2
PrismLauncher-3efcccf334e28d03605dd0597f53f900105cf04b.zip
Merge pull request #4345 from graemeg/freebsd-support
Adds FreeBSD support to MultiMC
Diffstat (limited to 'launcher/Version.cpp')
-rw-r--r--launcher/Version.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Version.cpp b/launcher/Version.cpp
index 6392a50f..b9090e29 100644
--- a/launcher/Version.cpp
+++ b/launcher/Version.cpp
@@ -78,7 +78,7 @@ void Version::parse()
// FIXME: this is bad. versions can contain a lot more separators...
QStringList parts = m_string.split('.');
- for (const auto &part : parts)
+ for (const auto& part : parts)
{
m_sections.append(Section(part));
}