I have an iVar named,

int DATA_IN_TRANSIT;

and I have defined several macros, e.g.

#define PLACES 0;

When I do something like the following,

if(DATA_IN_TRANSIT == PLACES)
{
   NSLog(@"Make LLVM Dance!");
}

I get a compiler error (expression expected) in the line if(DATA_IN_TRANSIT == PLACES)

I don't know why it's giving me an error? Am I doing something naive?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
#define PLACES 0

but without ';'

otherwise you'll get

if(DATA_IN_TRANSIT == 0;)
{
   NSLog(@"Make LLVM Dance!");
}
link|improve this answer
I thought I did something naive! lol thanks – TweetWithThisOwl_FollowMe Feb 1 at 23:20
feedback

Your Answer

 
or
required, but never shown

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