N
newbarker
Hello,
I've got this class:
class Point
{
(bits omitted)
private:
double data_[2];
}
My question is will the compiler generated copy constructor and
assignment work as expected with the array member?
Regards,
Pete
I've got this class:
class Point
{
(bits omitted)
private:
double data_[2];
}
My question is will the compiler generated copy constructor and
assignment work as expected with the array member?
Regards,
Pete