From c243bc09d4d891f48643c18246a064548cefe889 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 11 Sep 2018 21:45:20 -0400 Subject: service/audio: Replace includes with forward declarations where applicable A few headers were including other headers when a forward declaration can be used instead, allowing the include to be moved to the cpp file. --- src/core/hle/service/audio/audio.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/core/hle/service/audio/audio.h') diff --git a/src/core/hle/service/audio/audio.h b/src/core/hle/service/audio/audio.h index 95e5691f7..f5bd3bf5f 100644 --- a/src/core/hle/service/audio/audio.h +++ b/src/core/hle/service/audio/audio.h @@ -4,7 +4,9 @@ #pragma once -#include "core/hle/service/service.h" +namespace Service::SM { +class ServiceManager; +} namespace Service::Audio { -- cgit v1.2.3