diff options
author | Lioncash <mathew1800@gmail.com> | 2021-02-09 17:38:42 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-02-09 17:38:45 -0500 |
commit | a352f34462887a3983fa0f2d27129d2bd0a8df6c (patch) | |
tree | 986bec742ba6baecf94a0508d0401fe73da3cf72 /src/input_common/udp/udp.cpp | |
parent | cda24b8eb14cfee0105f889aa342be322f3cfc30 (diff) |
udp: Silence unused member variable warnings
Simply mark them as unused for now.
Diffstat (limited to 'src/input_common/udp/udp.cpp')
-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 b630281a0e..9829da6f00 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; }; |