Boost logo

Boost-Build :

From: John Maddock (john_at_[hidden])
Date: 2004-02-29 08:44:01


> The error is on the line marked ***here***. What I'm guessing is that
> Borland defines an overload of std::max for intrinsic types, or just
> unsigned long, which does not return a reference, but I'm just guessing
> here. Can anybody who has access to this toolset confirm? And how can
> I test a fix?

Yes, Borland's headers define:

inline unsigned long min (unsigned long __a, unsigned long __b)
{
return min<unsigned long> (__a, __b);
}

inline unsigned long max (unsigned long __a, unsigned long __b)
{
return max<unsigned long> (__a, __b);
}

I'm not sure what the best fix is here,

John.

 


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk