Also prevent move in nocopy_t
This commit is contained in:
parent
5288ee1021
commit
5b362da37d
1 changed files with 2 additions and 0 deletions
|
@ -49,6 +49,8 @@ protected:
|
||||||
private:
|
private:
|
||||||
nocopy_t(nocopy_t const&) = delete;
|
nocopy_t(nocopy_t const&) = delete;
|
||||||
nocopy_t& operator=(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;
|
class context_t;
|
||||||
|
|
Reference in a new issue