1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +01:00

Try to keep compiler from complaining about this cast that we KNOW is okay.

This commit is contained in:
mvandervoord
2019-10-30 08:53:08 -04:00
parent 94dc637d03
commit 5dd5931114

View File

@@ -87,7 +87,8 @@ void* unity_malloc(size_t size)
}
else
{
guard = (Guard*)&unity_heap[heap_index];
/* We know we can get away with this cast because we aligned memory already */
guard = (Guard*)(void*)(&unity_heap[heap_index]);
heap_index += total_size;
}
#else