mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-08 21:04:26 +00:00
Remove redundant variable
This commit is contained in:
parent
fbd5699786
commit
431e7179ac
@ -80,13 +80,13 @@ namespace
|
|||||||
if (sizeInBytes < 0) return false;
|
if (sizeInBytes < 0) return false;
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
auto rawVal = static_cast<qreal>(sizeInBytes);
|
val = static_cast<qreal>(sizeInBytes);
|
||||||
|
|
||||||
while ((rawVal >= 1024.) && (i <= static_cast<int>(Utils::Misc::SizeUnit::ExbiByte))) {
|
while ((val >= 1024.) && (i <= static_cast<int>(Utils::Misc::SizeUnit::ExbiByte))) {
|
||||||
rawVal /= 1024.;
|
val /= 1024.;
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
val = rawVal;
|
|
||||||
unit = static_cast<Utils::Misc::SizeUnit>(i);
|
unit = static_cast<Utils::Misc::SizeUnit>(i);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user