diff options
author | Lioncash <mathew1800@gmail.com> | 2019-02-27 11:36:46 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-02-27 11:36:48 -0500 |
commit | 6335bf136f5710e02ccdefc452dfd3b9b53fc312 (patch) | |
tree | 5aad826ca218bbb6f10cc46856e38acdb9642ae8 /src | |
parent | 42f7c11021482212711df1d99687a380f07ad67a (diff) |
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 'src')
-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 { class SharedMemory; } -namespace SM { +namespace Service::SM { class ServiceManager; } |