mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Cleared truncation warning under MSVC
This commit is contained in:
parent
1997c21b37
commit
5eefa99e68
@ -45,7 +45,7 @@ struct NewPrimeTable
|
|||||||
break;
|
break;
|
||||||
if (j == testEntriesEnd)
|
if (j == testEntriesEnd)
|
||||||
{
|
{
|
||||||
primeTable.push_back(p);
|
primeTable.push_back(static_cast<word16>(p));
|
||||||
testEntriesEnd = UnsignedMin(54U, primeTable.size());
|
testEntriesEnd = UnsignedMin(54U, primeTable.size());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user