UnitTests: Remove redundant template type specifers

This commit is contained in:
Dr. Dystopia
2025-05-16 21:09:52 +02:00
parent 404a7c75b2
commit 2102108b1a
6 changed files with 31 additions and 31 deletions

View File

@ -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;