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
This could potentially help solve #437 and #367. Furthermore this will be necessary for translate-c support, since we currently do not maintain type name information. For example, if uint32_t immediately resolves to unsigned int, we can't translate that as u32 instead of c_uint. The same applies to typedef'd enums and records.
The text was updated successfully, but these errors were encountered:
Briefly discussed here #433 (comment)
This would add a new field
.typedef
toType.Specifier
with an associated data*Typedef
, withTypedef
defined as:This could potentially help solve #437 and #367. Furthermore this will be necessary for translate-c support, since we currently do not maintain type name information. For example, if
uint32_t
immediately resolves tounsigned int
, we can't translate that asu32
instead ofc_uint
. The same applies to typedef'd enums and records.The text was updated successfully, but these errors were encountered: