I tried writing this class
#include <memory>
class ContainerUnique
{
public:
ContainerUnique(void);
~ContainerUnique(void);
private:
std::unique_ptr<UniqueElement> u;
};
Where UniqueElement is a POD class defined elsewhere. I now define the constructor body like this:
ContainerUnique::ContainerUnique(void)
{
auto tmp = new UniqueElement(1);
this->u(tmp); // u is a unique_ptr<UniqueElement>. Should this call compile?
}
And it complies without exceptions. Running the program I find that after the constructor of ContainerUnique has been called, u contains a null pointer.
Is this the intended behaviour? And what unique_ptr method am I actually calling?