Fix MSVC warnings

This commit is contained in:
Arseny Kapoulkine 2022-01-21 08:37:50 -08:00
parent 9cfe44e5a2
commit 699660a4eb
2 changed files with 3 additions and 3 deletions

View file

@ -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)

View file

@ -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);