Boost logo

Boost :

Subject: Re: [boost] [random] Compilation errors in linear_congruential.hpp because of min()/max()
From: Steven Watanabe (watanabesj_at_[hidden])
Date: 2009-11-16 18:39:06


AMDG

Hartmut Kaiser wrote:
> I'm getting compilations errors against Boost trunk from inside
> linear_congruential.hpp:+89 on VS2010 because of min()/max() being used
> without safeguarding them against accidental macro substitution:
>
> assert(_x >= min());
> assert(_x <= max());
>
> if I replace this with
>
> assert(_x >= (min)());
> assert(_x <= (max)());
>
> the compiler errors go away.
>

My bad. Fixed in the trunk.

In Christ,
Steven Watanabe


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk