Fix RefCountedTest not initializing deleted.

This commit is contained in:
Corentin Wallez
2017-05-29 12:03:08 -07:00
committed by Corentin Wallez
parent 944b60fb75
commit 7815d78044
2 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ using namespace backend;
TEST(Math, ScanForward) {
// Test extrema
ASSERT_EQ(ScanForward(1), 0);
ASSERT_EQ(ScanForward(0x8000000000000000), 63);
ASSERT_EQ(ScanForward(0x80000000), 31);
// Test with more than one bit set.
ASSERT_EQ(ScanForward(256), 8);