You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be good to have a test for a multi-dimensional array of pointers that converted to _Ptr as well as a pointer to an array of pointers. Multi-dimensional arrays are tricky in C because of the way * and lvalue-to-rvalue conversion works for array types. It is worth checking that things work as you expect.
The text was updated successfully, but these errors were encountered:
Changed the signature of malloc, calloc and free to make them polymorphic bounds safe interface functions and fixed the tests that failed due to the change in signature.
It would be good to have a test for a multi-dimensional array of pointers that converted to _Ptr as well as a pointer to an array of pointers. Multi-dimensional arrays are tricky in C because of the way * and lvalue-to-rvalue conversion works for array types. It is worth checking that things work as you expect.
The text was updated successfully, but these errors were encountered: