$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [move] problem with msvc and BOOST_MOVABLE_BUT_NOT_COPYABLE
From: Ilya Sokolov (ilyasokol_at_[hidden])
Date: 2010-05-28 15:27:16
Ion Gaztañaga wrote:
> [snip]
>
> class X
> {
> X(const X&);
> X& operator=(const X&);
X(const X&) = delete;
X& operator=(const X&) = delete;
> [snip]