summaryrefslogtreecommitdiffstats
path: root/src/input_common/udp/udp.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-02-03 15:10:59 +0100
committerLioncash <mathew1800@gmail.com>2020-02-03 15:13:40 +0100
commit36524465a6fb9940ab5297cef21cd2aa6de8e239 (patch)
treeb924ccc0b9352d0f2eb79737af8cffdeba851353 /src/input_common/udp/udp.cpp
parentinput_common/udp: Add missing header guard (diff)
downloadyuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar
yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.gz
yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.bz2
yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.lz
yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.xz
yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.tar.zst
yuzu-36524465a6fb9940ab5297cef21cd2aa6de8e239.zip
Diffstat (limited to 'src/input_common/udp/udp.cpp')
-rw-r--r--src/input_common/udp/udp.cpp4
1 files changed, 3 insertions, 1 deletions
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 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include "common/logging/log.h"
+#include <mutex>
+#include <tuple>
+
#include "common/param_package.h"
#include "core/frontend/input.h"
#include "core/settings.h"