DiscIO/VolumeVerifier: Use structured bindings where applicable

Allows providing better names than "first" or "second".
This commit is contained in:
Lioncash 2019-05-27 10:28:45 -04:00
parent fa57396e97
commit bf6948c1d4
1 changed files with 9 additions and 9 deletions

View File

@ -816,26 +816,26 @@ void VolumeVerifier::Finish()
}
}
for (auto pair : m_block_errors)
for (auto [partition, blocks] : m_block_errors)
{
if (pair.second > 0)
if (blocks > 0)
{
const std::string name = GetPartitionName(m_volume.GetPartitionType(pair.first));
const std::string name = GetPartitionName(m_volume.GetPartitionType(partition));
std::string text = StringFromFormat(
GetStringT("Errors were found in %zu blocks in the %s partition.").c_str(), pair.second,
GetStringT("Errors were found in %zu blocks in the %s partition.").c_str(), blocks,
name.c_str());
AddProblem(Severity::Medium, std::move(text));
}
}
for (auto pair : m_unused_block_errors)
for (auto [partition, blocks] : m_unused_block_errors)
{
if (pair.second > 0)
if (blocks > 0)
{
const std::string name = GetPartitionName(m_volume.GetPartitionType(pair.first));
const std::string name = GetPartitionName(m_volume.GetPartitionType(partition));
std::string text = StringFromFormat(
GetStringT("Errors were found in %zu unused blocks in the %s partition.").c_str(),
pair.second, name.c_str());
GetStringT("Errors were found in %zu unused blocks in the %s partition.").c_str(), blocks,
name.c_str());
AddProblem(Severity::Low, std::move(text));
}
}