$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
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.