copy constructor with default arguments
- by FredOverflow
As far as I know, the copy constructor must be of the Form T(const T&) or T(T&). What if I wanted to add default arguments to the signature?
T(const T&, double f = 1.0);
Would that be standards compliant?