up vote 1 down vote favorite
share [g+] share [fb]

You can see what i'm trying to do below:

typedef struct image_bounds {
    int xmin, ymin, xmax, ymax;
} image_bounds;

#define IMAGE_BOUNDS(X) ((image_bounds *)(X));

typedef struct {
    image_bounds bounds;
    float dummy;
} demo;

int
main(void) {
    demo my_image;

    /* this works fine */
    ((image_bounds *)(&my_image))->xmin = 10;

    /* why doesn't this work? i get the following error:
    /* In function main:
      cast.c:20: error: expected expression before = token
    */    
    IMAGE_BOUNDS(&my_image)->xmin = 20;

    return 0;
}

As you can see from above the C cast works but the macro version does not, what am I doing wrong?

link|improve this question

If you expand your macro, it doesn't appear that you are trying to set any field, i.e., there's no reference to .xmin, .ymin, or even .dummy, the lvalue just expands to a pointer to my_image. – JustJeff Aug 11 '09 at 23:02
1  
A useful trick for the future might be to explicitly run it through preprocessor (cpp) if you have such a possibility - it will show you the text after the macro expansion, so any errors will be much more visible. for your example it showed the macro expanded to "((image_bounds *)(&my_image));->xmin = 20;" which helps to spot the error. – Andrew Y Aug 11 '09 at 23:16
feedback

2 Answers

up vote 14 down vote accepted

You need to lose the semicolon from the definition of IMAGE_BOUNDS:

#define IMAGE_BOUNDS(X) ((image_bounds *)(X))
link|improve this answer
hahahah thanks! :) – banister Aug 11 '09 at 22:58
You can't call yourself a C programmer if you haven't developed a blind spot for semicolons! – Mark Ransom Sep 2 '09 at 3:30
feedback

In the version without macros you have ->xmin before the =, in the one with macros you don't.

link|improve this answer
yeah sorry that was just a typo :( – banister Aug 11 '09 at 23:01
feedback

Your Answer

 
or
required, but never shown

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