Boost logo

Boost :

From: Nicola Musatti (nmusatti_at_[hidden])
Date: 2002-10-13 08:47:12


Hi,
static_assert_test.cpp fails to compile with bcc 5.6.1 (BCB6 UP2).
Apparently the Borland specific workaround in static_assert.hpp is not
required with this compiler. The simplest way to fix this is to change
line 20 in static_assert.hpp from

#ifdef __BORLANDC__

to

#if defined(__BORLANDC__) && __BORLANDC__ != 0x561

However, given that at least three different Borland compilers are
commonly used it would be nice if this could be turned in a Boost
specific macro, and the relevant check be moved to config/borland.hpp.

Cheers,
Nicola Musatti


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