mirror of
https://github.com/Zygo/bees.git
synced 2025-07-06 18:32:26 +02:00
task: delete the move constructor for TaskState
Move-constructing isn't good for that class either. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
@ -89,6 +89,7 @@ namespace crucible {
|
|||||||
|
|
||||||
TaskState &operator=(const TaskState &) = delete;
|
TaskState &operator=(const TaskState &) = delete;
|
||||||
TaskState(const TaskState &) = delete;
|
TaskState(const TaskState &) = delete;
|
||||||
|
TaskState(TaskState &&) = delete;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
~TaskState();
|
~TaskState();
|
||||||
|
Reference in New Issue
Block a user