diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-15 12:22:01 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-22 10:50:03 +0100 |
commit | 5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a (patch) | |
tree | 4f65578a7b6cd6d5f379b177919583bcfb8e71f3 /src/input_common/udp | |
parent | Merge pull request #4944 from lioncash/system-rem (diff) | |
download | yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.gz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.bz2 yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.lz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.xz yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.tar.zst yuzu-5c4774e8ce1d3c5391402f4b2244cfb4dfe7d57a.zip |
Diffstat (limited to 'src/input_common/udp')
-rw-r--r-- | src/input_common/udp/client.cpp | 6 | ||||
-rw-r--r-- | src/input_common/udp/protocol.h | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/src/input_common/udp/client.cpp b/src/input_common/udp/client.cpp index 3677e79ca..10b07d338 100644 --- a/src/input_common/udp/client.cpp +++ b/src/input_common/udp/client.cpp @@ -63,7 +63,7 @@ public: } private: - void HandleReceive(const boost::system::error_code& error, std::size_t bytes_transferred) { + void HandleReceive(const boost::system::error_code&, std::size_t bytes_transferred) { if (auto type = Response::Validate(receive_buffer.data(), bytes_transferred)) { switch (*type) { case Type::Version: { @@ -90,7 +90,7 @@ private: StartReceive(); } - void HandleSend(const boost::system::error_code& error) { + void HandleSend(const boost::system::error_code&) { boost::system::error_code _ignored{}; // Send a request for getting port info for the pad const Request::PortInfo port_info{1, {static_cast<u8>(pad_index), 0, 0, 0}}; @@ -369,7 +369,7 @@ CalibrationConfigurationJob::CalibrationConfigurationJob( u16 max_y{}; Status current_status{Status::Initialized}; - SocketCallback callback{[](Response::Version version) {}, [](Response::PortInfo info) {}, + SocketCallback callback{[](Response::Version) {}, [](Response::PortInfo) {}, [&](Response::PadData data) { if (current_status == Status::Initialized) { // Receiving data means the communication is ready now diff --git a/src/input_common/udp/protocol.h b/src/input_common/udp/protocol.h index 3ba4d1fc8..fc1aea4b9 100644 --- a/src/input_common/udp/protocol.h +++ b/src/input_common/udp/protocol.h @@ -7,7 +7,16 @@ #include <array> #include <optional> #include <type_traits> + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4701) +#endif #include <boost/crc.hpp> +#ifdef _MSC_VER +#pragma warning(pop) +#endif + #include "common/bit_field.h" #include "common/swap.h" @@ -93,7 +102,7 @@ static_assert(std::is_trivially_copyable_v<PadData>, /** * Creates a message with the proper header data that can be sent to the server. - * @param T data Request body to send + * @param data Request body to send * @param client_id ID of the udp client (usually not checked on the server) */ template <typename T> |