diff options
| author | 2015-01-27 02:40:21 -0200 | |
|---|---|---|
| committer | 2015-01-30 11:49:46 -0200 | |
| commit | d917a9bf7774fac3d7bccda761976615722ff3e6 (patch) | |
| tree | 64e4b1ec43b7699fe1a6ab1be1c688b6d63c0d75 /src/core/hle/kernel/mutex.h | |
| parent | SVC: Use CASCADE_RESULT in SVC handlers (diff) | |
| download | yuzu-d917a9bf7774fac3d7bccda761976615722ff3e6.tar.gz yuzu-d917a9bf7774fac3d7bccda761976615722ff3e6.tar.xz yuzu-d917a9bf7774fac3d7bccda761976615722ff3e6.zip | |
Kernel: Mark all appropriate kernel objects as "final"
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
| -rw-r--r-- | src/core/hle/kernel/mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h index a6d822e60..1e69528f1 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h | |||
| @@ -14,7 +14,7 @@ namespace Kernel { | |||
| 14 | 14 | ||
| 15 | class Thread; | 15 | class Thread; |
| 16 | 16 | ||
| 17 | class Mutex : public WaitObject { | 17 | class Mutex final : public WaitObject { |
| 18 | public: | 18 | public: |
| 19 | /** | 19 | /** |
| 20 | * Creates a mutex. | 20 | * Creates a mutex. |