Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes memory corruption with multi-dimensional arrays
static const Test[2][][2] = { { { 9, 8 } }, { { 6, 7 } } }; The above code causes a memory corruption as the compiler does not correctly calculate the size of the array. This commit adds code to fix it.
- Loading branch information