Add support to watch getters (const functions) in C++
Add support to watch expressions with getters (const functions) in C++
Examples:
1.
float GetWidth() const;
float GetHeight() const;
area = obj.GetWidth() * obj.GetHeight();
2.
const float operator[](unsigned int index) const;
val = obj1[i] + obj2[i+1];
20
votes
1 comment
-
Anonymous
commented
Watch expression under mouse while debugging, of course