I want to add a break condition to my code in VC ++ Express 2005, so that a break point is only triggered if the local variable meets the specified criteria. eg.
bool my_test(UIDList test_list) {
foo(test_list);
bar(test_list);
print(test_list);
}
By right-clicking on my breakpoint and selecting "Condition ...", I found a dialog box that appears to do what I want, however everything that I try to enter in the text box leads to the following error:
Unable to evaluate breakpoint condition: CX0052: Error: member function missing
I tried the help documentation but could not find the answer. I hope someone from VC ++ can point me in the right direction ...
I previously tried to switch to a later version of VC ++ Express, but the project did not import cleanly. Due to the complexity of the project and my current time scale, I cannot consider upgrading as a solution at the moment.
source
share