diff options
| author | 2017-06-06 01:29:46 -0700 | |
|---|---|---|
| committer | 2017-06-06 02:57:23 -0700 | |
| commit | d96a9e0c11d653a88bfee53e7ff11c4ba7a159a7 (patch) | |
| tree | 3219885089d1d9c4aa56c98d5f00206b19832305 /src/core/hle/service/ndm | |
| parent | Service: Make service registration part of the sm implementation (diff) | |
| download | yuzu-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/ndm')
| -rw-r--r-- | src/core/hle/service/ndm/ndm.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/ndm/ndm.cpp b/src/core/hle/service/ndm/ndm.cpp index 5eb97f0d3..096c0cdac 100644 --- a/src/core/hle/service/ndm/ndm.cpp +++ b/src/core/hle/service/ndm/ndm.cpp | |||
| @@ -2,8 +2,10 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <array> | ||
| 5 | #include "common/common_types.h" | 6 | #include "common/common_types.h" |
| 6 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 8 | #include "core/hle/ipc.h" | ||
| 7 | #include "core/hle/service/ndm/ndm.h" | 9 | #include "core/hle/service/ndm/ndm.h" |
| 8 | #include "core/hle/service/ndm/ndm_u.h" | 10 | #include "core/hle/service/ndm/ndm_u.h" |
| 9 | #include "core/hle/service/service.h" | 11 | #include "core/hle/service/service.h" |