Take the following definition
class A {
int p, q;
A(int n, int m);
};
A::A(int n):m(n),
p (m)
{ }
The code explorer shows the following functions:
A::A(int n):m(n),
p(m)
Both are incorrect.
--
<http://forum.pspad.com/read.php?6,55295,55558>
PSPad freeware editor http://www.pspad.com
