Fix Casts

Use const_cast<> to avoid cast-away-const errors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene 2013-01-14 21:04:35 +00:00
parent 1ba5769676
commit c8be88ab56

View File

@ -46,7 +46,8 @@ TEST(WaymarkTest, TwoBit) {
Use::initTags(many, many + 8212);
for (const Use *U = many, *Ue = many + 8212 - 1; U != Ue; ++U)
{
EXPECT_EQ((User*)(Ue + 1), U->getUser());
EXPECT_EQ(reinterpret_cast<User*>(const_cast<Use *>(Ue + 1)),
U->getUser());
}
}