mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
Fix MSVC warnings
This commit is contained in:
parent
9cfe44e5a2
commit
699660a4eb
2 changed files with 3 additions and 3 deletions
|
@ -770,11 +770,11 @@ static int sweepgcopage(lua_State* L, lua_Page* page)
|
||||||
{
|
{
|
||||||
// if the last block was removed, page would be removed as well
|
// if the last block was removed, page would be removed as well
|
||||||
if (--busyBlocks == 0)
|
if (--busyBlocks == 0)
|
||||||
return (pos - start) / blockSize + 1;
|
return int(pos - start) / blockSize + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (end - start) / blockSize;
|
return int(end - start) / blockSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t gcstep(lua_State* L, size_t limit)
|
static size_t gcstep(lua_State* L, size_t limit)
|
||||||
|
|
|
@ -520,7 +520,7 @@ GCObject* luaM_newgco_(lua_State* L, size_t nsize, uint8_t memcat)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
lua_Page* page = newpage(L, &g->allgcopages, offsetof(lua_Page, data) + nsize, nsize, 1);
|
lua_Page* page = newpage(L, &g->allgcopages, offsetof(lua_Page, data) + int(nsize), int(nsize), 1);
|
||||||
|
|
||||||
block = &page->data;
|
block = &page->data;
|
||||||
ASAN_UNPOISON_MEMORY_REGION(block, page->blockSize);
|
ASAN_UNPOISON_MEMORY_REGION(block, page->blockSize);
|
||||||
|
|
Loading…
Add table
Reference in a new issue