Hi
I have two pointer variables both with the same type.
Camera *a;
Camera *b;
But when I try a = b;
a won't take the pointer value of b in release mode, but it dose so in debug mode why is that?
My project is a bit more complicated than this example given here. But it's essens is the same an assignemnt of pointer variables of the same type should just work right?
Thanx for any help explaining why this can happen...
I thought I was seeing unbelivable things when the debugger showed me it just stepping throuw the assignment without actually doing any assigning....
Lee10
I have two pointer variables both with the same type.
Camera *a;
Camera *b;
But when I try a = b;
a won't take the pointer value of b in release mode, but it dose so in debug mode why is that?
My project is a bit more complicated than this example given here. But it's essens is the same an assignemnt of pointer variables of the same type should just work right?
Thanx for any help explaining why this can happen...
I thought I was seeing unbelivable things when the debugger showed me it just stepping throuw the assignment without actually doing any assigning....
Lee10