Boost logo

Boost :

From: John Maddock (john_at_[hidden])
Date: 2003-11-28 10:12:57


> http://tinyurl.com/wuoh#indirect_iterator_test-borland-5.6.4
>
> Seems to suggest that BOOST_NO_DEDUCED_TYPENAME should be #defined
> for borland 5.6.4. Any objections?

It may well be the wrong fix: if you remove the leading :: from the names
then everything works OK:

typedef BOOST_DEDUCED_TYPENAME
boost::detail::iterator_traits<Iterator>::value_type value_type;

typedef BOOST_DEDUCED_TYPENAME
boost::detail::iterator_traits<Iterator>::reference reference;

rather than:

typedef BOOST_DEDUCED_TYPENAME
::boost::detail::iterator_traits<Iterator>::value_type value_type;

typedef BOOST_DEDUCED_TYPENAME
::boost::detail::iterator_traits<Iterator>::reference reference;

John.


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