Leigh Johnston
2010-03-06 11:38:32 UTC
The following doesn't compile in VS2008:
#include <functional>
struct foo
{
void operator()() { }
};
int main()
{
foo o;
std::tr1::bind(o)();
}
Has this been fixed in VS2010?
/Leigh
#include <functional>
struct foo
{
void operator()() { }
};
int main()
{
foo o;
std::tr1::bind(o)();
}
Has this been fixed in VS2010?
/Leigh