summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-02-09 23:38:42 +0100
committerLioncash <mathew1800@gmail.com>2021-02-09 23:38:45 +0100
commita352f34462887a3983fa0f2d27129d2bd0a8df6c (patch)
tree986bec742ba6baecf94a0508d0401fe73da3cf72
parentudp/client: Define ClientData constructor/destructor in cpp file (diff)
downloadyuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar
yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.gz
yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.bz2
yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.lz
yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.xz
yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.zst
yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.zip
-rw-r--r--src/input_common/udp/udp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/udp/udp.cpp b/src/input_common/udp/udp.cpp
index b630281a0..9829da6f0 100644
--- a/src/input_common/udp/udp.cpp
+++ b/src/input_common/udp/udp.cpp
@@ -84,8 +84,8 @@ public:
private:
const std::string ip;
- const u16 port;
- const u16 pad;
+ [[maybe_unused]] const u16 port;
+ [[maybe_unused]] const u16 pad;
CemuhookUDP::Client* client;
mutable std::mutex mutex;
};