Also prevent move in nocopy_t

This commit is contained in:
Matthias Schiffer 2013-07-30 04:54:19 +02:00
parent 5288ee1021
commit 5b362da37d

View file

@ -49,6 +49,8 @@ protected:
private:
nocopy_t(nocopy_t const&) = delete;
nocopy_t& operator=(nocopy_t const&) = delete;
nocopy_t(nocopy_t&&) = delete;
nocopy_t& operator=(nocopy_t&&) = delete;
};
class context_t;