$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Thorsten Ottosen (thorsten.ottosen_at_[hidden])
Date: 2007-10-24 10:06:29
Beman Dawes skrev:
> Looks like the range fixes broke foreach. See
> http://mysite.verizon.net/beman/bgd-win32-trunk-results.html
This is my fault, sinc eI changed the names of the ADL hooks back to
1.34 names:
namespace boost
{
char * range_begin(mine::dummy&) {return 0;}
char const * range_begin(mine::dummy const&) {return 0;}
char * range_end(mine::dummy&) {return 0;}
char const * range_end(mine::dummy const&) {return 0;}
}
should be
namespace boost
{
char * boost_range_begin(mine::dummy&) {return 0;}
char const * boost_range_begin(mine::dummy const&) {return 0;}
char * boost_range_end(mine::dummy&) {return 0;}
char const * boost_range_end(mine::dummy const&) {return 0;}
}
The old names have been in use for so long that I don't see the point in
changing them anymore.
-Thorsten