Core: Get rid of a cast in JitRegCache.cpp

This commit is contained in:
Lioncash 2014-08-01 20:25:39 -04:00
parent 6c923b776e
commit 4e2f487741

View File

@ -125,7 +125,7 @@ void RegCache::FlushR(X64Reg reg)
int RegCache::SanityCheck() const int RegCache::SanityCheck() const
{ {
for (int i = 0; i < (int)regs.size(); i++) for (size_t i = 0; i < regs.size(); i++)
{ {
if (regs[i].away) if (regs[i].away)
{ {