
30 Dec
2009
30 Dec
'09
4:18 p.m.
AMDG Igor R wrote:
Could someone please explain the following behavior:
#include
#include struct Functor { void operator()() const {} template<class T> void func(T t) {} };
int main() { Functor f; boost::lambda::bind(&Functor::func<Functor>, &f, f); // doesn't compile boost::bind(&Functor::func<Functor>, &f, f); // compiles well }
It ICEs in a bizarre way for me with the trunk and msvc 9.0. In Christ, Steven Watanabe