S
sandSpiderX
Hi,
How do i use this definition of overloaded operator,
T& operator*(T*);
like
struct X {};
X ox;
X* px=&ox;
X oy;
oy=*px;
is this correct use of this operator overload.
Help
SS
How do i use this definition of overloaded operator,
T& operator*(T*);
like
struct X {};
X ox;
X* px=&ox;
X oy;
oy=*px;
is this correct use of this operator overload.
Help
SS