Boost logo

Boost :

From: John Maddock (jm_at_[hidden])
Date: 2002-10-01 06:33:46


> I am getting following error from BCC55 command line tools:

Ok I've got a couple of fixes for you:

In errors_handling_test.cpp can you change (__BORLANDC__ <= 0x560) to
(__BORLANDC__ <= 0x570).

In unit_test_suite.hpp you need to apply the following fixes to get the code
compiling with C++ Builder 5:

179c179
< p_stages_amount.set( detail::distance( par_begin_, par_end_ ) );

---
>        p_stages_amount.set( detail::distance( (ParamIterator)par_begin_,
(ParamIterator)par_end_ ) );
210c210
<        p_stages_amount.set( detail::distance( par_begin_, par_end_ ) );
---
>        p_stages_amount.set( detail::distance( (ParamIterator)par_begin_,
(ParamIterator)par_end_ ) );
Regards,
John Maddock
http://ourworld.compuserve.com/homepages/john_maddock/index.htm

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