vote up 0 vote down star

I'm trying to compile LightZPng with warnings on level 4. I get a lot of C4127 on lines that are clearly not worthy of this warning. An example:

#define MAX_BITS 15
int values_per_bitlen[ MAX_BITS + 1 ];
for ( int i = 0; i <= MAX_BITS; ++i )    // C4127 is here
    values_per_bitlen[ i ] = 0;

How can this code be changed to avoid the warning other than #pragma?

flag

36% accept rate

4 Answers

vote up 3 vote down check

There's a piece of code at the top of LightZ.cpp that goes like this:

#define for if (false) {} else for

That means your actual statement is:

#define for if (false) {} else for ( int i = 0; i <= MAX_BITS; ++i )

which is why you're getting the constant expression error (it's the false, not the i <= MAX_BITS as I thought).

Simply comment out or delete that line from the file (I can't actually figure out why they would do that).

link|flag
Good catch, @WinProg, fleshed it out for you and +1'ed it. – paxdiablo Jun 12 at 3:45
Maybe this needs a further explanation? This causes every subsequent occurence of the token for to expand to an if statement containing a for statement. VC++ diagnoses if (false) as having a constant conditional expression, well no kidding. If you delete this line there will be fewer occurences of if (false) in the program. – Windows programmer Jun 12 at 3:46
We were typing at the same time. Sorry if my comment looks insulting. – Windows programmer Jun 12 at 3:47
No probs, I have pretty thick skin. – paxdiablo Jun 12 at 3:49
What, awesome catch. I didn't consider a #define since my syntax highlighting still marked it as a keyword (I guess that takes precedence in syntax highlighting). – Jim Buck Jun 12 at 4:08
show 3 more comments
vote up 1 vote down

Yes, that its odd. It's truly not a constant expression since i changes in the loop. So this would appear to be a problem with VS2005. For what it's worth, VS2008 does exactly the same thing.

Strangely enough, a project with just this in it does not complain so it may well be some weird edge-case problem with Microsoft's warning generation code:

#define MAX_BITS 15
int values_per_bitlen[ MAX_BITS + 1 ];
int main(int argc, char* argv[]) {
    for ( int i = 0; i <= MAX_BITS; ++i )
        values_per_bitlen[ i ] = 0;
    return 0;
}

However, you haven't actually asked a question. What is it that you want to know, or want us to do?

Update:

See "Windows programmer"'s answer for the actual cause - there's a "#define for if (false) {} else for" at the top of LightZ.cpp which is causing the problem.

link|flag
Added a question.. just basically want to change the code to avoid the warning without actually turning off the warning. – Jim Buck Jun 12 at 3:25
You want to change the code? Delete the line that I quoted in my answer. – Windows programmer Jun 12 at 3:30
vote up 0 vote down

I tested it on my VS2005 and the warning does not appear, even at warning level 4. .

A simple procedure for you to follow :

-Create a new Console App and place only the above code and see if the warning shows up again.

-If not, check for differences in the project settings.

-If yes, I would assume that your optimization setting may be causing it.

link|flag
Yeah sure, some project settings tell VC++ to check for stuff like if (false), and some project settings tell VC++ not the check for stuff like if (false). – Windows programmer Jun 12 at 3:32
vote up 0 vote down

According to Charles Nicholson, Visual Studio 2005 gives this error with the "do...while(0)" trick:

#define MULTI_LINE_MACRO \
    do { \
        doSomething(); \
        doSomethingElse(); \
    } while(0)

If you absolutely must, you can use the __pragma directive to selectively disable that warning around a particular code fragment.

link|flag
It also gives that warning for if (false), as we've seen in this question. – Windows programmer Jun 12 at 3:43

Your Answer

Get an OpenID
or

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