fixup simple type conversions where possible
This commit is contained in:
parent
c549c36076
commit
0a31e373f1
14 changed files with 55 additions and 45 deletions
|
@ -515,7 +515,7 @@ void GraphicsVertexShaderWidget::Reload(bool replace_vertex_data, void* vertex_d
|
|||
}
|
||||
|
||||
// Initialize debug info text for current cycle count
|
||||
cycle_index->setMaximum(debug_data.records.size() - 1);
|
||||
cycle_index->setMaximum(static_cast<int>(debug_data.records.size() - 1));
|
||||
OnCycleIndexChanged(cycle_index->value());
|
||||
|
||||
model->endResetModel();
|
||||
|
|
|
@ -19,7 +19,7 @@ QString ReadableByteSize(qulonglong size) {
|
|||
static const std::array<const char*, 6> units = { "B", "KiB", "MiB", "GiB", "TiB", "PiB" };
|
||||
if (size == 0)
|
||||
return "0";
|
||||
int digit_groups = std::min<int>((int)(std::log10(size) / std::log10(1024)), units.size());
|
||||
int digit_groups = std::min<int>(static_cast<int>(std::log10(size) / std::log10(1024)), static_cast<int>(units.size()));
|
||||
return QString("%L1 %2").arg(size / std::pow(1024, digit_groups), 0, 'f', 1)
|
||||
.arg(units[digit_groups]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue