diff options
| author | 2021-02-09 20:19:56 -0500 | |
|---|---|---|
| committer | 2021-02-09 20:19:56 -0500 | |
| commit | 70db238f80c523ac3f807de18e822698cc39a135 (patch) | |
| tree | 8265e28e6327fa7021aabd28469b5bcdcd1e8bd5 /src/input_common/udp/client.h | |
| parent | Merge pull request #5900 from lioncash/unused-func (diff) | |
| parent | udp: Silence unused member variable warnings (diff) | |
| download | yuzu-70db238f80c523ac3f807de18e822698cc39a135.tar.gz yuzu-70db238f80c523ac3f807de18e822698cc39a135.tar.xz yuzu-70db238f80c523ac3f807de18e822698cc39a135.zip | |
Merge pull request #5901 from lioncash/input-warn
udp: Silence warnings on Clang 12
Diffstat (limited to 'src/input_common/udp/client.h')
| -rw-r--r-- | src/input_common/udp/client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input_common/udp/client.h b/src/input_common/udp/client.h index 822f9c550..a523f6124 100644 --- a/src/input_common/udp/client.h +++ b/src/input_common/udp/client.h | |||
| @@ -98,6 +98,9 @@ public: | |||
| 98 | 98 | ||
| 99 | private: | 99 | private: |
| 100 | struct ClientData { | 100 | struct ClientData { |
| 101 | ClientData(); | ||
| 102 | ~ClientData(); | ||
| 103 | |||
| 101 | std::string host{"127.0.0.1"}; | 104 | std::string host{"127.0.0.1"}; |
| 102 | u16 port{26760}; | 105 | u16 port{26760}; |
| 103 | std::size_t pad_index{}; | 106 | std::size_t pad_index{}; |