diff options
| author | 2015-07-12 17:25:55 -0400 | |
|---|---|---|
| committer | 2015-07-12 17:25:55 -0400 | |
| commit | b6719ec922ce807510932887b80e61aeeec2fc7b (patch) | |
| tree | e51bf1dcb7fb474725329579ce2c0bd0374a7ffe /src/core/hle/service | |
| parent | Kernel: Add CodeSet case to Object::IsWaitable (diff) | |
| parent | Core: Fix applet includes using iwyu. (diff) | |
| download | yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.gz yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.tar.xz yuzu-b6719ec922ce807510932887b80e61aeeec2fc7b.zip | |
Merge pull request #921 from linkmauve/fix-applet
Fix applet includes using iwyu
Diffstat (limited to 'src/core/hle/service')
| -rw-r--r-- | src/core/hle/service/apt/apt.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/service/apt/apt.h b/src/core/hle/service/apt/apt.h index 9f0802508..72972d05b 100644 --- a/src/core/hle/service/apt/apt.h +++ b/src/core/hle/service/apt/apt.h | |||
| @@ -4,11 +4,14 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | 7 | #include "common/common_types.h" |
| 8 | #include "core/hle/result.h" | 8 | |
| 9 | #include "core/hle/service/service.h" | 9 | #include "core/hle/kernel/kernel.h" |
| 10 | 10 | ||
| 11 | namespace Service { | 11 | namespace Service { |
| 12 | |||
| 13 | class Interface; | ||
| 14 | |||
| 12 | namespace APT { | 15 | namespace APT { |
| 13 | 16 | ||
| 14 | /// Holds information about the parameters used in Send/Glance/ReceiveParameter | 17 | /// Holds information about the parameters used in Send/Glance/ReceiveParameter |