Hello, I added a local variable from another file than main to watch expression and I get "Error:multiple error reporter", I also put a dynamic printf breakpoint at that line. Why it is giving that error? The variable is declared and defined in a local function, for other variables that are global variables it works fine, but for local variables I get this error.
Thanks,
Vlad
Hi Vlad,
if you add local variable to the expression window, you can see its value only if the debugger steps through the function, where the variable is created. Local variables are created on the stack and exist only when the function is executed. This is the reason why you get the error.
Regards,
Martin