mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 21:15:04 +00:00
Fix MSVC /W4 warning
Conversion from size_t to unsigned int is lossy.
This commit is contained in:
parent
74e8dc9e07
commit
30348b561a
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ double POWER_10_NEG[MAX_POWER] =
|
|||
};
|
||||
|
||||
|
||||
static void* memory_realloc(void* ptr, fastObjUInt bytes)
|
||||
static void* memory_realloc(void* ptr, size_t bytes)
|
||||
{
|
||||
return FAST_OBJ_REALLOC(ptr, bytes);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue