
9 Feb
2006
9 Feb
'06
8:30 p.m.
AlisdairM wrote:
Eric Niebler wrote:
[...]
With the typo-fix below all tests pass with 5.6.4 and 5.6.5 (except the two expected failures). I was looking forward to some real BCC-bug-poking-fun, actually... ;-/ Anyway, OK to commit? Regards, Tobias // Borland needs a little extra help with arrays #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) template<typename T,std::size_t N> -inline T (*&to_ptr(T (&t)[N]))[N] +inline T (*&to_ptr(T (&)[N]))[N] { static T (*t)[N] = 0; return t;