udp: Silence unused member variable warnings

Simply mark them as unused for now.
merge-requests/60/head
Lioncash 2021-02-09 17:38:42 +07:00
parent cda24b8eb1
commit a352f34462
1 changed files with 2 additions and 2 deletions

@ -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;
};