A
Alex Snast
Hello
I'm wondering if it common to return a const reference to an object
const BinSearchTree& operator= (const BinSearchTree& rhs)
throw(bad_alloc);
or
BinSearchTree& operator= (const BinSearchTree& rhs)
throw(bad_alloc);
is there any standard on those
Thanks for any help.
I'm wondering if it common to return a const reference to an object
const BinSearchTree& operator= (const BinSearchTree& rhs)
throw(bad_alloc);
or
BinSearchTree& operator= (const BinSearchTree& rhs)
throw(bad_alloc);
is there any standard on those
Thanks for any help.