
Test test_tools_test - Regressions on VC++ 6.0 and 7.0.
I did not make any changes lately. But from error messages it seems like has something to do with boost::bind. Peter could you please take a look. Gennadiy.

Rozental, Gennadiy wrote:
Test test_tools_test - Regressions on VC++ 6.0 and 7.0.
I did not make any changes lately. But from error messages it seems like has something to do with boost::bind. Peter could you please take a look.
Yes, it appears to be a compiler bug, demonstrated by: template<class F> void test(F & f) { } int main() { typedef void (*Fp) (); Fp const fp = 0; test(fp); } I'll fix it as soon as I decide what's the proper fix going to be.

Peter Dimov wrote:
Rozental, Gennadiy wrote:
Test test_tools_test - Regressions on VC++ 6.0 and 7.0.
I did not make any changes lately. But from error messages it seems like has something to do with boost::bind. Peter could you please take a look.
Yes, it appears to be a compiler bug, demonstrated by:
template<class F> void test(F & f) { }
int main() { typedef void (*Fp) (); Fp const fp = 0; test(fp); }
I'll fix it as soon as I decide what's the proper fix going to be.
OK, I think I've fixed it.
participants (2)
-
Peter Dimov
-
Rozental, Gennadiy