From 9cff314abb9365df74590152ca3e0da579a84f59 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 1 May 2020 08:54:24 -0400 Subject: [PATCH] service/ir: Remove erroneous forward declaration This can be removed as it's not used. Even if it were however, it would be an incorrect forward declaration, as ServiceManager exists within the Service::SM namespace, not the top-level SM namespace. --- src/core/hle/service/ir/ir.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/hle/service/ir/ir.h b/src/core/hle/service/ir/ir.h index 3887e0f6e..5578d8a15 100644 --- a/src/core/hle/service/ir/ir.h +++ b/src/core/hle/service/ir/ir.h @@ -8,10 +8,6 @@ namespace Core { class System; } -namespace SM { -class ServiceManager; -} - namespace Service::IR { void InstallInterfaces(Core::System& system);