I know that most of you might have noticed now. When you try to evaluate an expression using watch on RAD Studio 2007, it does not evaluate.

For example, if I had a vector, I could not do "vecData.size()", if I do "vecData.size", it just gives an address.

Is there any other way to watch the size and view each element of the vector in RAD Studio while debugging?

link|improve this question

feedback

1 Answer

If you disable the compiler optimisations in the project options, the debugger will then be able to evaluate vecData.size().

"Project Options->C++ Compiler->Optimizations->Disable all optimizations" set this option to "True".

This works for 2009, I believe it is the same for 2007.

link|improve this answer
This is interesting. I will try this when I get a code gear on my PC again. Thanks. – Nap Oct 1 '09 at 2:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.