diff options
| author | 2021-02-09 17:38:42 -0500 | |
|---|---|---|
| committer | 2021-02-09 17:38:45 -0500 | |
| commit | a352f34462887a3983fa0f2d27129d2bd0a8df6c (patch) | |
| tree | 986bec742ba6baecf94a0508d0401fe73da3cf72 /src/input_common/udp/udp.cpp | |
| parent | udp/client: Define ClientData constructor/destructor in cpp file (diff) | |
| download | yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.gz yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.tar.xz yuzu-a352f34462887a3983fa0f2d27129d2bd0a8df6c.zip | |
udp: Silence unused member variable warnings
Simply mark them as unused for now.
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/udp/udp.cpp | 4 |
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: | |||
| 84 | 84 | ||
| 85 | private: | 85 | private: |
| 86 | const std::string ip; | 86 | const std::string ip; |
| 87 | const u16 port; | 87 | [[maybe_unused]] const u16 port; |
| 88 | const u16 pad; | 88 | [[maybe_unused]] const u16 pad; |
| 89 | CemuhookUDP::Client* client; | 89 | CemuhookUDP::Client* client; |
| 90 | mutable std::mutex mutex; | 90 | mutable std::mutex mutex; |
| 91 | }; | 91 | }; |