8 Jun
2004
8 Jun
'04
7:51 a.m.
I've had a response from the Microsoft groups. The problem is described here http://support.microsoft.com/default.aspx?kbid=823071 I'll post back if I get it working. Thanks Russell Russell Hind wrote:
Compiling the following code with /CLR on, results in an empty function exception at run-time. If you un-comment the #pragma unmanaged to get native compilation, it runs fine.
Thanks
Russell
#include "stdafx.h" #using
//#pragma unmanaged
#include
#include class Test_c { public: void test(void) { } };
int main() { Test_c Test; boost::function
f(boost::bind(&Test_c::test, &Test)); f(); return 0; }