Book a Demo

Author Topic: Roundtrip fail  (Read 2154 times)

johnm9

  • EA User
  • **
  • Posts: 52
  • Karma: +0/-0
    • View Profile
Roundtrip fail
« on: June 23, 2008, 04:15:08 pm »
I've tried to roundtrip a *.h file.
Parse error for the following syntax:
(1) unsigned int :2;
(2) unsigned LONGLONG m_l;

How to solve it?

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Roundtrip fail
« Reply #1 on: June 23, 2008, 04:27:32 pm »
1) EA is looking for a name, assuming this is actually valid code that I haven't seen before.  EA doesn't know how to deal with it and you'll need to send a bug report to sparx systems.

2) EA doesn't know that LONGLONG evaluates to a primitive type that can have the unsigned modifier applied to it.  Either expand LONGLONG, or create a macro that includes the unsigned (eg. ULONGLONG).