eco
Tomato Guru
102 Posts |
Posted - Mar 29 2004 : 08:39:43 AM
|
it is hard to find a title... with that code,
class xxx { public: xxx( ) { m_value = 0; }
void blah( ) { m_value++; }
private: double m_value; };
in the blah function, if i use goto m_value declaration, VA bring me to the first use of m_value (in the constructor), not on the declaration
|
|