On Thu, Feb 25, 2010 at 2:07 AM, Wim Dumon <[email protected]> wrote: > Hello Max, > > This has been extensively discussed on the mailing list the last > couple of weeks. We decided it causes trouble for too many people, and > we'll look into a solution soon (other than defining NOMINMAX). Note > that this is still windows.h's fault, not Wt's :)
Just for note, the 'proper' and portable way to fix that is to change code like this: std::max(x,y) Into code like this: (std::max)(x,y) That will cancel and bail out of the macro invocation, thus it will all work fine. ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
