mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-11-24 12:53:08 +00:00
core: hle: kernel: k_thread: Mark KScopedDisableDispatch as nodiscard.
This commit is contained in:
parent
9e3d1d865c
commit
5060a97210
|
@ -773,7 +773,7 @@ public:
|
|||
|
||||
class KScopedDisableDispatch {
|
||||
public:
|
||||
explicit KScopedDisableDispatch(KernelCore& kernel_) : kernel{kernel_} {
|
||||
[[nodiscard]] explicit KScopedDisableDispatch(KernelCore& kernel_) : kernel{kernel_} {
|
||||
GetCurrentThread(kernel).DisableDispatch();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue