diff options
| author | 2016-09-21 00:21:23 +0900 | |
|---|---|---|
| committer | 2016-09-21 11:15:47 +0900 | |
| commit | ebdae19fd226104baec712b9da9939ff82ef3c3a (patch) | |
| tree | e046c0f562fc4400480b2e3257f140e973a9ce6a /src/core/hle/svc.cpp | |
| parent | Manually tweak source formatting and then re-run clang-format (diff) | |
| download | yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.tar.gz yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.tar.xz yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.zip | |
Remove empty newlines in #include blocks.
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
Diffstat (limited to 'src/core/hle/svc.cpp')
| -rw-r--r-- | src/core/hle/svc.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 9d0a9c54c..02b397eba 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -3,16 +3,14 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <map> | 5 | #include <map> |
| 6 | |||
| 7 | #include "common/logging/log.h" | 6 | #include "common/logging/log.h" |
| 8 | #include "common/microprofile.h" | 7 | #include "common/microprofile.h" |
| 9 | #include "common/scope_exit.h" | 8 | #include "common/scope_exit.h" |
| 10 | #include "common/string_util.h" | 9 | #include "common/string_util.h" |
| 11 | #include "common/symbols.h" | 10 | #include "common/symbols.h" |
| 12 | |||
| 13 | #include "core/arm/arm_interface.h" | 11 | #include "core/arm/arm_interface.h" |
| 14 | #include "core/core_timing.h" | 12 | #include "core/core_timing.h" |
| 15 | 13 | #include "core/hle/function_wrappers.h" | |
| 16 | #include "core/hle/kernel/address_arbiter.h" | 14 | #include "core/hle/kernel/address_arbiter.h" |
| 17 | #include "core/hle/kernel/client_port.h" | 15 | #include "core/hle/kernel/client_port.h" |
| 18 | #include "core/hle/kernel/event.h" | 16 | #include "core/hle/kernel/event.h" |
| @@ -26,8 +24,6 @@ | |||
| 26 | #include "core/hle/kernel/thread.h" | 24 | #include "core/hle/kernel/thread.h" |
| 27 | #include "core/hle/kernel/timer.h" | 25 | #include "core/hle/kernel/timer.h" |
| 28 | #include "core/hle/kernel/vm_manager.h" | 26 | #include "core/hle/kernel/vm_manager.h" |
| 29 | |||
| 30 | #include "core/hle/function_wrappers.h" | ||
| 31 | #include "core/hle/result.h" | 27 | #include "core/hle/result.h" |
| 32 | #include "core/hle/service/service.h" | 28 | #include "core/hle/service/service.h" |
| 33 | 29 | ||