$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
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