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
Currently we generate a typedef struct Foo Foo for class foo { struct this; } and then use Foo * for this. However, we also generate a typedef for class foo_bar { struct this; }, but then use struct Foo_bar * for this. This is due to the underscore rule. These rules need to be revised and clarified.
The text was updated successfully, but these errors were encountered:
Currently we generate a
typedef struct Foo Foo
forclass foo { struct this; }
and then useFoo *
forthis
. However, we also generate a typedef forclass foo_bar { struct this; }
, but then usestruct Foo_bar *
forthis
. This is due to the underscore rule. These rules need to be revised and clarified.The text was updated successfully, but these errors were encountered: