diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-05-18 02:12:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-18 02:12:45 -0500 |
| commit | 2e22a3cf425caae0a3cb52cc4deca7008209955f (patch) | |
| tree | 558307be915d9708eaae615380e187044d0dd83d /Source/UnitTests/Common/FloatUtilsTest.cpp | |
| parent | 88005deaeb26c3bcb4205ca08f93bfdc3b9088db (diff) | |
| parent | 2102108b1a62c0e30f86e2ceada7d8be03603923 (diff) | |
Merge pull request #13672 from tygyh/UnitTests/Remove-redundant-template-type-specifiers
UnitTests: Remove redundant template type specifers
Diffstat (limited to 'Source/UnitTests/Common/FloatUtilsTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/FloatUtilsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/Common/FloatUtilsTest.cpp b/Source/UnitTests/Common/FloatUtilsTest.cpp index 1c97e3a537..8afc698a47 100644 --- a/Source/UnitTests/Common/FloatUtilsTest.cpp +++ b/Source/UnitTests/Common/FloatUtilsTest.cpp @@ -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; |
