1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 04:54:18 +00:00

Merge pull request #8556 from Piccirello/compiler-warnings

Fix missing initializer warning during build
This commit is contained in:
Vladimir Golovnev 2018-03-12 14:28:38 +03:00 committed by GitHub
commit cea2948593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ namespace Utils
typedef Version<T, N, Mandatory> ThisType;
constexpr Version()
: m_components {}
: m_components {{}}
{
}
@ -167,7 +167,7 @@ namespace Utils
throw std::runtime_error ("Incorrect number of version components");
bool ok = false;
ComponentsArray res{};
ComponentsArray res {{}};
for (std::size_t i = 0; i < static_cast<std::size_t>(versionParts.size()); ++i) {
res[i] = static_cast<T>(versionParts[i].toInt(&ok));
if (!ok)