vote up 4 vote down star

I'm seeing strange errors when my C++ code has min() or max() calls. I'm using Visual C++ compilers.

flag

8 Answers

vote up 8 vote down check

Check if your code is including the windows.h header file and either your code or other third-party headers have their own min()/max() definitions. If yes, then prepend your windows.h inclusion with a definition of NOMINMAX like this:

#define NOMINMAX
#include <windows.h>
link|flag
vote up 2 vote down

Ugh... scope it, dude: std::min(), std::max().

link|flag
1  
You still need to #define NOMINMAX or the preprocessor will still expand min & max. – Ferruccio Sep 11 '08 at 1:49
vote up 1 vote down

Maybe you could post some code showing how you're using these and some info about the difference between what you expected would happen versus what actually happened?

link|flag
vote up 1 vote down

I deleted my original response when I saw you post your answer. Good one! :-)

I also wanted to see some example code (I was suspecting a logic error, since the question seemed vague). But now that I see the solution, I understand the reason for posing the question the way you did. It's one of those issues...the kind you go nuts trying to solve until you finally hit the answer, then you bang your head on your desk for ten minutes.

link|flag
vote up 1 vote down

Another possibility could be from side effects. Most min/max macros will include the parameters multiple times and may not do what you expect. Errors and warnings could also be generated.

max(a,i++) expands as ((a) > (i++) ? (a) : (i++))

afterwards i is either plus 1 or plus 2

The () in the expansion are to avoid problems if you call it with formulae. Try expanding max(a,b+c)

link|flag
vote up 0 vote down

I haven't used it in years but from memory boost assigns min and max too, possibly?

link|flag
vote up 0 vote down

Honestly, when it comes to min/max, I find it best to just define my own:

#define min(a,b) (a < b ? a : b)
#define max(a,b) (a >= b ? a : b)
link|flag
1  
Which, frankly, is asking for trouble. In C++, use using std::swap and write your own swap when you can do better than the default. In C, at the very lease write #define min(a,b) ((a) < (b) ? (a) : (b)) and MAKE SURE YOU DON'T CALL IT WITH ANYTHING WITH SIDE EFFECTS, because you will have multiple evaluation. – David Thornley Nov 24 at 22:28
Can you elaborate on your comment re: std::swap ? – dhorn Nov 24 at 23:26
vote up -1 vote down

This is officially the oddest question on Stack Overflow

link|flag

Your Answer

Get an OpenID
or

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