I am using Visual Studio 2010 (writing C++) and have isolated an exception coming from a call to a #define function. The defined function is a bit complex and I would like to be able to step through it with the debugger to find out where the exception occurs. Is there any way to do this?
The relationships are like this:
my.h
defines a class that inherits from a third-party class declared in their.h
. The third-party class in their.h
includes the macro of interest, which is defined in another header, say `macro.h'.