summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-06-06 01:29:46 -0700
committerGravatar Yuri Kunde Schlesner2017-06-06 02:57:23 -0700
commitd96a9e0c11d653a88bfee53e7ff11c4ba7a159a7 (patch)
tree3219885089d1d9c4aa56c98d5f00206b19832305 /src/core/hle/service/service.cpp
parentService: Make service registration part of the sm implementation (diff)
downloadyuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.gz
yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.tar.xz
yuzu-d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7.zip
Service: Remove unnecessary includes from service.h
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 1b64ee77d..0d443aa44 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -4,6 +4,7 @@
4 4
5#include "common/logging/log.h" 5#include "common/logging/log.h"
6#include "common/string_util.h" 6#include "common/string_util.h"
7#include "core/hle/kernel/client_port.h"
7#include "core/hle/kernel/server_port.h" 8#include "core/hle/kernel/server_port.h"
8#include "core/hle/kernel/server_session.h" 9#include "core/hle/kernel/server_session.h"
9#include "core/hle/service/ac/ac.h" 10#include "core/hle/service/ac/ac.h"