diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2018-06-12 16:19:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-12 16:19:59 +0200 |
| commit | 8a3679bebc9bcdbd0adb53075697b01cf8a1cb42 (patch) | |
| tree | 116c3573749db35bc1190a131ed457fa38a2528f /Source/UnitTests/Common/MathUtilTest.cpp | |
| parent | f3a18db9e0a2d7ae71ee175849785351013dca67 (diff) | |
| parent | 4d55cb745c4ed6bc624071dbcc8f23f37d186da6 (diff) | |
Merge pull request #7111 from spycrab/update_gtest
Externals/GTest: Update to latest master
Diffstat (limited to 'Source/UnitTests/Common/MathUtilTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/MathUtilTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/UnitTests/Common/MathUtilTest.cpp b/Source/UnitTests/Common/MathUtilTest.cpp index 2b808e7be5..daca01bb74 100644 --- a/Source/UnitTests/Common/MathUtilTest.cpp +++ b/Source/UnitTests/Common/MathUtilTest.cpp @@ -33,8 +33,8 @@ TEST(MathUtil, IntLog2) TEST(MathUtil, NextPowerOf2) { - EXPECT_EQ(4, MathUtil::NextPowerOf2(3)); - EXPECT_EQ(4, MathUtil::NextPowerOf2(4)); - EXPECT_EQ(8, MathUtil::NextPowerOf2(6)); - EXPECT_EQ(0x40000000, MathUtil::NextPowerOf2(0x23456789)); + EXPECT_EQ(4U, MathUtil::NextPowerOf2(3)); + EXPECT_EQ(4U, MathUtil::NextPowerOf2(4)); + EXPECT_EQ(8U, MathUtil::NextPowerOf2(6)); + EXPECT_EQ(0x40000000U, MathUtil::NextPowerOf2(0x23456789)); } |
