From 6335bf136f5710e02ccdefc452dfd3b9b53fc312 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Wed, 27 Feb 2019 11:36:46 -0500
Subject: [PATCH] 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.
---
 src/core/hle/service/hid/hid.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index 6d897c8428..7cc58db4ca 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;
 }