udp: Silence unused member variable warnings

Simply mark them as unused for now.
This commit is contained in:
Lioncash 2021-02-09 17:38:42 -05:00
parent 70b6d985e7
commit 4681f5b60b

View file

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