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
+2 -1
View File
@@ -87,7 +87,8 @@ void* unity_malloc(size_t size)
} }
else 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; heap_index += total_size;
} }
#else #else