changed array size to no longer be a pointer, need to check every file that references array to hopefully not have broken anything
This commit is contained in:
parent
56a4aa9d39
commit
533541b852
6 changed files with 29 additions and 24 deletions
|
|
@ -11,7 +11,7 @@ extern "C" {
|
|||
* @brief a type that holds an array of data and its size
|
||||
*/
|
||||
typedef struct ARC_Array {
|
||||
uint32_t *size;
|
||||
uint32_t size;
|
||||
void *data;
|
||||
} ARC_Array;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue