'function': could not resolve event
function could not resolve which event to call.
The following sample generates C3723:
struct A { // To resolve, comment void f(int); and uncomment the __event function void f(int); // __event void f(int); void f(float); }; struct B { void g(int); B(A* a) { __hook(&A::f, a, &B::g); // C3723 } }; void main() { }