Opened 12 years ago

Last modified 11 years ago

#2106 closed defect

Code generation for arrays of records — at Initial Version

Reported by: Martin Sjölund Owned by: mahge
Priority: high Milestone: 1.9.0
Component: Code Generation Version: trunk
Keywords: Cc:

Description

We need to add support for arrays of records in function context
Currently our code looks something like:

struct Complex_array _t;
alloc_struct Complex_array(&_t, 1, (modelica_integer) 2);

This needs to be something like...

struct_array _t;
alloc_struct_array(&t, sizeof(struct Complex), 1, 2);

Change History (0)

Note: See TracTickets for help on using tickets.