summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-02-27 11:36:46 -0500
committerGravatar Lioncash2019-02-27 11:36:48 -0500
commit6335bf136f5710e02ccdefc452dfd3b9b53fc312 (patch)
tree5aad826ca218bbb6f10cc46856e38acdb9642ae8
parentMerge pull request #2169 from lioncash/naming (diff)
downloadyuzu-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.h2
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 {
15class SharedMemory; 15class SharedMemory;
16} 16}
17 17
18namespace SM { 18namespace Service::SM {
19class ServiceManager; 19class ServiceManager;
20} 20}
21 21