kernel/scheduler: Mark SchedulerLock constructor as nodiscard

Allows the compiler to warn about cases where the constructor is used
but then immediately discarded, which is a potential cause of
locking/unlocking bugs.
This commit is contained in:
Lioncash 2020-08-02 20:15:20 -04:00
parent 2740be0f9d
commit 8d7e58562f

View file

@ -289,7 +289,7 @@ private:
class SchedulerLock {
public:
explicit SchedulerLock(KernelCore& kernel);
[[nodiscard]] explicit SchedulerLock(KernelCore& kernel);
~SchedulerLock();
protected: