diff options
| author | 2019-02-27 11:36:46 -0500 | |
|---|---|---|
| committer | 2019-02-27 11:36:48 -0500 | |
| commit | 6335bf136f5710e02ccdefc452dfd3b9b53fc312 (patch) | |
| tree | 5aad826ca218bbb6f10cc46856e38acdb9642ae8 | |
| parent | Merge pull request #2169 from lioncash/naming (diff) | |
| download | yuzu-6335bf136f5710e02ccdefc452dfd3b9b53fc312.tar.gz yuzu-6335bf136f5710e02ccdefc452dfd3b9b53fc312.tar.xz yuzu-6335bf136f5710e02ccdefc452dfd3b9b53fc312.zip | |
service/hid: Amend forward declaration of ServiceManager
The SM namespace is within the Service namespace, so this was forward
declaring a type that didn't exist.
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/hid/hid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index 6d897c842..7cc58db4c 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h | |||
| @@ -15,7 +15,7 @@ namespace Kernel { | |||
| 15 | class SharedMemory; | 15 | class SharedMemory; |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | namespace SM { | 18 | namespace Service::SM { |
| 19 | class ServiceManager; | 19 | class ServiceManager; |
| 20 | } | 20 | } |
| 21 | 21 | ||