Boost logo

Boost :

From: hugo duncan (hugo.duncan_at_[hidden])
Date: 2002-10-16 08:45:07


On Wed, 16 Oct 2002 13:50:37 +0200 (MEST), Guillaume Melquiond <gmelquio_at_[hidden]> wrote:

> There are also a lot of problems with Boost Test framework since E2316
> "'__strcmp__' is not a member of 'std'" (I suppose there is a '#define
> strcmp __strcmp__' somewhere).
>

The following inserted into the test .cpp files works around the problem for BCC 5.6 with update 2 applied (0x561).
It is a little ugly though....

#if defined(__BORLANDC__) && __BORLANDC__ >= 0x560 && !defined(_DEBUG)
using namespace std;
#define std
#endif


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