diff options
| author | 2015-07-12 22:10:37 +0100 | |
|---|---|---|
| committer | 2015-07-12 22:10:37 +0100 | |
| commit | fe909b3b5adb5e1306a1c85e6e1275424a6371b2 (patch) | |
| tree | 28cd4fbd98402187dbaa0a87e14eabaff88ff8d0 /src/core/hle/applets/applet.cpp | |
| parent | Merge pull request #823 from Subv/applets_drawing (diff) | |
| download | yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.gz yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.tar.xz yuzu-fe909b3b5adb5e1306a1c85e6e1275424a6371b2.zip | |
Core: Fix applet includes using iwyu.
Diffstat (limited to 'src/core/hle/applets/applet.cpp')
| -rw-r--r-- | src/core/hle/applets/applet.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/applets/applet.cpp b/src/core/hle/applets/applet.cpp index 4dcce729a..826f6cbb6 100644 --- a/src/core/hle/applets/applet.cpp +++ b/src/core/hle/applets/applet.cpp | |||
| @@ -2,12 +2,19 @@ | |||
| 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 <cstddef> | ||
| 6 | #include <memory> | ||
| 7 | #include <type_traits> | ||
| 8 | #include <unordered_map> | ||
| 9 | |||
| 5 | #include "common/assert.h" | 10 | #include "common/assert.h" |
| 6 | #include "common/logging/log.h" | 11 | #include "common/common_types.h" |
| 7 | 12 | ||
| 8 | #include "core/core_timing.h" | 13 | #include "core/core_timing.h" |
| 9 | #include "core/hle/applets/applet.h" | 14 | #include "core/hle/applets/applet.h" |
| 10 | #include "core/hle/applets/swkbd.h" | 15 | #include "core/hle/applets/swkbd.h" |
| 16 | #include "core/hle/result.h" | ||
| 17 | #include "core/hle/service/apt/apt.h" | ||
| 11 | 18 | ||
| 12 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 19 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 13 | 20 | ||