Hi, array types - incomplete and constant - are printed wrong. Examples: * `typedef unsigned char bar[23];` is printed as `typedef unsigned char [23] bar;` * `typedef long baz[][];`is printed as `typedef long [][] baz;`.
Hi,
array types - incomplete and constant - are printed wrong. Examples:
typedef unsigned char bar[23];is printed astypedef unsigned char [23] bar;typedef long baz[][];is printed astypedef long [][] baz;.