mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
UnitTests: Remove redundant template type specifers
This commit is contained in:
@ -49,7 +49,7 @@ TEST(FloatUtils, FlushToZero)
|
||||
|
||||
// Test all subnormals as well as an equally large set of random normal floats.
|
||||
std::default_random_engine engine(0);
|
||||
std::uniform_int_distribution<u32> dist(0x00800000u, 0x7fffffffu);
|
||||
std::uniform_int_distribution dist(0x00800000u, 0x7fffffffu);
|
||||
for (u32 i = 0; i <= 0x007fffffu; ++i)
|
||||
{
|
||||
u32 i_tmp = i;
|
||||
|
Reference in New Issue
Block a user