Book a Demo

Author Topic: C Source Import does not handle forward typedefs  (Read 3406 times)

Henry Bruce

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
C Source Import does not handle forward typedefs
« on: October 31, 2008, 05:35:26 am »
I'm using Enterprise Architect version 7.1.833 to reverse engineer some C source for UML visualization. It appears that the import cannot handle forward typedef declarations, as it gives the error "Unexpected symbol: TypeName" when processing the typedef declaration shown below.

typedef struct _tag TypeName;

struct _tag
{
   ...
};

Is this a known issue? Are there any workarounds?

Henry