Boost logo

Boost :

Subject: [boost] boost::aligned_storage is not a POD.
From: Vicente J. Botet Escriba (vicente.botet_at_[hidden])
Date: 2017-02-11 16:25:19


Hi,

boost::aligned_storage is not a POD.

I suspect it is because of the declared constructors

private: // noncopyable

     aligned_storage(const aligned_storage&);
     aligned_storage& operator=(const aligned_storage&);

public: // structors

     aligned_storage()
     {
     }

     ~aligned_storage()
     {
     }

Was this intentional?

Why aligned_storage is not copyable?

Best,

Vicente


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk