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/udp.cpp | |
| 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/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 b630281a0..9829da6f0 100644 --- a/src/input_common/udp/udp.cpp +++ b/src/input_common/udp/udp.cpp | |||
| @@ -84,8 +84,8 @@ public: | |||
| 84 | 84 | ||
| 85 | private: | 85 | private: |
| 86 | const std::string ip; | 86 | const std::string ip; |
| 87 | const u16 port; | 87 | [[maybe_unused]] const u16 port; |
| 88 | const u16 pad; | 88 | [[maybe_unused]] const u16 pad; |
| 89 | CemuhookUDP::Client* client; | 89 | CemuhookUDP::Client* client; |
| 90 | mutable std::mutex mutex; | 90 | mutable std::mutex mutex; |
| 91 | }; | 91 | }; |