Boost logo

Boost :

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


> > Ok I've got a couple of fixes for you:
> >
> > In errors_handling_test.cpp can you change (__BORLANDC__ <= 0x560) to
> > (__BORLANDC__ <= 0x570).
>
> You want to say it's still does not work?

Yes it still doesn't work and probably won't anytime soon, version 0x570 is
the same as version 0x561, but on a different platform, confusing eh?

> >
> > In unit_test_suite.hpp you need to apply the following fixes to get the
> code
> > compiling with C++ Builder 5:
>
> I passed all tests with BCC (other then subj) with BCC55.
>
> >
> > 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_ ) );
>
> Do you meen that I need this ot make to fix:
>
> Error E2406 ...\\BCC55\\Include\rw/iterator.h 124: Dependent type
qualifier
> 'int *' is not a class or struct type in function
> parametrized_function_test_case<int
> *,int>::parametrized_function_test_case(void (*)(int),const char *,int *
> const &,int * const &)

Yes, those patches fix that.

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