mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-23 01:44:22 +00:00
Fixed implicit conversion warnings in BigInteger
This commit is contained in:
parent
c94be5db8b
commit
821dea8008
1 changed files with 3 additions and 3 deletions
|
|
@ -1324,9 +1324,9 @@ public:
|
|||
|
||||
for (int j = 100000; --j >= 0;)
|
||||
{
|
||||
uint32 offset = r.nextInt (200) + 10;
|
||||
uint32 num = r.nextInt (32) + 1;
|
||||
uint32 value = r.nextInt();
|
||||
uint32 offset = static_cast<uint32> (r.nextInt (200) + 10);
|
||||
uint32 num = static_cast<uint32> (r.nextInt (32) + 1);
|
||||
uint32 value = static_cast<uint32> (r.nextInt());
|
||||
|
||||
if (num < 32)
|
||||
value &= ((1u << num) - 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue