On Sunday, 7 June 2020 at 23:09:41 UTC, Jack Applegame wrote:
const NonCopyable const_a;
auto const_ua = Unique!(const NonCopyable)(move(ca)); //
error, why???
You can't move from a const variable.
On Sunday, 7 June 2020 at 23:09:41 UTC, Jack Applegame wrote:
const NonCopyable const_a;
auto const_ua = Unique!(const NonCopyable)(move(ca)); //
error, why???
You can't move from a const variable.