• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Xcode chockes on variable-sized arrays in struct definitions
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Xcode chockes on variable-sized arrays in struct definitions


  • Subject: Re: Xcode chockes on variable-sized arrays in struct definitions
  • From: Mike <email@hidden>
  • Date: Tue, 23 Jan 2007 14:52:08 -0700

So is there a compiler flag or something that will enable this in gcc 4 so it can be compiled on Xcode without the use of the [1]?

Thanks,

Mike

Syd Polk wrote:
-----Original Message-----
struct DataDefinition
{
DATATYPES DataType;
DWORD RevLevel;
DWORD FieldCount;
FieldDefinition Field[]; // <-------------------- This seems to be the problem structure
};
Standard C does not allow this syntax; you must put in a size there:


FieldDefinition Field[1];

would fix your problem. Visual C++, MPW and CodeWarrior all had this
extension in their compilers; gcc (and therefore Xcode) does not.





_______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
  • Follow-Ups:
    • Re: Xcode chockes on variable-sized arrays in struct definitions
      • From: "Sean McBride" <email@hidden>
References: 
 >RE: Xcode chockes on variable-sized arrays in struct definitions (From: "Syd Polk" <email@hidden>)

  • Prev by Date: Re: gcc4 optimization problems on intel mac
  • Next by Date: Re: Objective-C++ now crashes (was "Objective-C exception handler
  • Previous by thread: Re: Xcode chockes on variable-sized arrays in struct definitions
  • Next by thread: Re: Xcode chockes on variable-sized arrays in struct definitions
  • Index(es):
    • Date
    • Thread