diff options
Diffstat (limited to 'launcher/Version.cpp')
-rw-r--r-- | launcher/Version.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/launcher/Version.cpp b/launcher/Version.cpp index e4311f31..511aa9c3 100644 --- a/launcher/Version.cpp +++ b/launcher/Version.cpp @@ -117,12 +117,14 @@ QDebug operator<<(QDebug debug, const Version& v) bool first = true; for (auto s : v.m_sections) { - if (!first) debug.nospace() << ", "; + if (!first) + debug.nospace() << ", "; debug.nospace() << s.m_fullString; first = false; } - - debug.nospace() << " ]" << " }"; + + debug.nospace() << " ]" + << " }"; return debug; } |