Merge pull request #5901 from lioncash/input-warn

udp: Silence warnings on Clang 12
This commit is contained in:
Ameer J 2021-02-09 20:19:56 -05:00 committed by GitHub
commit 70db238f80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View file

@ -144,6 +144,10 @@ Client::~Client() {
Reset();
}
Client::ClientData::ClientData() = default;
Client::ClientData::~ClientData() = default;
std::vector<Common::ParamPackage> Client::GetInputDevices() const {
std::vector<Common::ParamPackage> devices;
for (std::size_t client = 0; client < clients.size(); client++) {

View file

@ -98,6 +98,9 @@ public:
private:
struct ClientData {
ClientData();
~ClientData();
std::string host{"127.0.0.1"};
u16 port{26760};
std::size_t pad_index{};

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