I am using the nightlies (pretty much happens with them all), and when I create a prototype of a member fucntion such as
public:
Foo(int , char * );
then in the implementation file I would do
Foo::Foo(int a, char * p) : mya(a), myp(p) {}
the class browser would list two occurances
one for the prototype, with no names, and one for the implementation with variable names. Is there a way to get rid of redundant occurances, it gets really confusing when browsing my class. Other than of course using variables in the prototypes, which I find redundant and unnecessary.