diff options
| author | 2020-02-03 09:10:59 -0500 | |
|---|---|---|
| committer | 2020-02-03 09:13:40 -0500 | |
| commit | 36524465a6fb9940ab5297cef21cd2aa6de8e239 (patch) | |
| tree | b924ccc0b9352d0f2eb79737af8cffdeba851353 /src | |
| parent | input_common/udp: Add missing header guard (diff) | |
| download | yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.gz yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.xz yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.zip | |
input_common/udp: Remove unnecessary inclusions
Diffstat (limited to 'src')
| -rw-r--r-- | src/input_common/udp/client.h | 1 | ||||
| -rw-r--r-- | src/input_common/udp/protocol.h | 1 | ||||
| -rw-r--r-- | src/input_common/udp/udp.cpp | 4 | ||||
| -rw-r--r-- | src/input_common/udp/udp.h | 6 |
4 files changed, 4 insertions, 8 deletions
diff --git a/src/input_common/udp/client.h b/src/input_common/udp/client.h index 0b21f4da6..b8c654755 100644 --- a/src/input_common/udp/client.h +++ b/src/input_common/udp/client.h | |||
| @@ -11,7 +11,6 @@ | |||
| 11 | #include <string> | 11 | #include <string> |
| 12 | #include <thread> | 12 | #include <thread> |
| 13 | #include <tuple> | 13 | #include <tuple> |
| 14 | #include <vector> | ||
| 15 | #include "common/common_types.h" | 14 | #include "common/common_types.h" |
| 16 | #include "common/thread.h" | 15 | #include "common/thread.h" |
| 17 | #include "common/vector_math.h" | 16 | #include "common/vector_math.h" |
diff --git a/src/input_common/udp/protocol.h b/src/input_common/udp/protocol.h index 1b521860a..3ba4d1fc8 100644 --- a/src/input_common/udp/protocol.h +++ b/src/input_common/udp/protocol.h | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | #include <array> | 7 | #include <array> |
| 8 | #include <optional> | 8 | #include <optional> |
| 9 | #include <type_traits> | 9 | #include <type_traits> |
| 10 | #include <vector> | ||
| 11 | #include <boost/crc.hpp> | 10 | #include <boost/crc.hpp> |
| 12 | #include "common/bit_field.h" | 11 | #include "common/bit_field.h" |
| 13 | #include "common/swap.h" | 12 | #include "common/swap.h" |
diff --git a/src/input_common/udp/udp.cpp b/src/input_common/udp/udp.cpp index a80f38614..49a747327 100644 --- a/src/input_common/udp/udp.cpp +++ b/src/input_common/udp/udp.cpp | |||
| @@ -2,7 +2,9 @@ | |||
| 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 "common/logging/log.h" | 5 | #include <mutex> |
| 6 | #include <tuple> | ||
| 7 | |||
| 6 | #include "common/param_package.h" | 8 | #include "common/param_package.h" |
| 7 | #include "core/frontend/input.h" | 9 | #include "core/frontend/input.h" |
| 8 | #include "core/settings.h" | 10 | #include "core/settings.h" |
diff --git a/src/input_common/udp/udp.h b/src/input_common/udp/udp.h index 0e56e431b..4f83f0441 100644 --- a/src/input_common/udp/udp.h +++ b/src/input_common/udp/udp.h | |||
| @@ -5,14 +5,10 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | 7 | #include <memory> |
| 8 | #include <unordered_map> | ||
| 9 | #include "input_common/main.h" | ||
| 10 | #include "input_common/udp/client.h" | ||
| 11 | 8 | ||
| 12 | namespace InputCommon::CemuhookUDP { | 9 | namespace InputCommon::CemuhookUDP { |
| 13 | 10 | ||
| 14 | class UDPTouchDevice; | 11 | class Client; |
| 15 | class UDPMotionDevice; | ||
| 16 | 12 | ||
| 17 | class State { | 13 | class State { |
| 18 | public: | 14 | public: |