aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdactor/td/actor/impl/Scheduler-decl.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdactor/td/actor/impl/Scheduler-decl.h')
-rw-r--r--tdactor/td/actor/impl/Scheduler-decl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdactor/td/actor/impl/Scheduler-decl.h b/tdactor/td/actor/impl/Scheduler-decl.h
index 723764245..4422795c9 100644
--- a/tdactor/td/actor/impl/Scheduler-decl.h
+++ b/tdactor/td/actor/impl/Scheduler-decl.h
@@ -46,10 +46,10 @@ class SchedulerGuard {
public:
explicit SchedulerGuard(Scheduler *scheduler, bool lock = true);
~SchedulerGuard();
- SchedulerGuard(const SchedulerGuard &other) = delete;
- SchedulerGuard &operator=(const SchedulerGuard &other) = delete;
- SchedulerGuard(SchedulerGuard &&other) = default;
- SchedulerGuard &operator=(SchedulerGuard &&other) = delete;
+ SchedulerGuard(const SchedulerGuard &) = delete;
+ SchedulerGuard &operator=(const SchedulerGuard &) = delete;
+ SchedulerGuard(SchedulerGuard &&) = default;
+ SchedulerGuard &operator=(SchedulerGuard &&) = delete;
private:
MovableValue<bool> is_valid_ = true;