Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The CDT parser reports a syntax error for the structure initialization:

typedef struct MyStruct
{
    int a;
    float b;
};

int main( void )
{
    // GNU C extension format
    MyStruct s = {a : 1, b : 2};
    // C99 standard format
//    MyStruct s = {.a = 1, .b = 2};

    return 0;
}

While GCC lists the : form as obsolete, it would seem that it has not been deprecated nor removed. In C99 I would certainly use the standard .<name> = form but for C++, the : is the only option that I am aware of for designated initialization.

I have tried setting my toolchain to both MinGW and Cross GCC, but neither seem to work.

How can I get Eclipse to recognize this syntax? It's not a big deal for one line but it carries through to every other instance of the variable since Eclipse does not realize it is declared.

share|improve this question
To be clear, your goal is for your IDE's tools (like syntax highlighting) to understand this syntax? – Yakk Jan 14 at 19:40
The CDT parser is unrelated to the toolchain. It recognizes a number of GCC extensions, put probably not the ones marked obsolete. – n.m. Jan 14 at 19:45
Yes, I am hoping someone is aware of a setting I may have wrong that would trigger Eclipse to recognize this. I figured that perhaps the toolchain would do this as it wouldn't make much sense to recognize GNU extensions when using a non-GNU compiler. – altendky Jan 14 at 20:23

1 Answer

The . form is only available in C99 and not in any flavor of C++. In C++ your only standards-compliant options are ordered initialization or constructors.

You can use chaining with appropriate reference returning methods to create a similar interface (here a and b are methods rather than variables):

MyStruct s;
s.a(1).b(2);
share|improve this answer
In my case the structure definition is in another project which is pure C. I don't really know the history but we are using a C++ test framework for our C code. Thanks for the suggestion though. – altendky Jan 14 at 20:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.