Merge pull request #711 from lioncash/cast

Core: Get rid of a cast in JitRegCache
This commit is contained in:
Pierre Bourdon 2014-08-01 17:29:35 -07:00
commit e0b6f8c9c4
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ void RegCache::FlushR(X64Reg reg)
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)
{