mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 18:39:01 +08:00
b9f003fb49
* [redis-plus-plus] Update to 1.2.1 and support Windows * [redis-plus-plus] Update to 1.2.1 and support Windows * [redis-plus-plus] Update to 1.2.1 and support Windows
14 lines
623 B
Diff
14 lines
623 B
Diff
diff --git a/src/sw/redis++/shards.cpp b/src/sw/redis++/shards.cpp
|
|
index e06d2a7..273d039 100644
|
|
--- a/src/sw/redis++/shards.cpp
|
|
+++ b/src/sw/redis++/shards.cpp
|
|
@@ -39,7 +39,7 @@ std::pair<Slot, Node> RedirectionError::_parse_error(const std::string &msg) con
|
|
auto host = msg.substr(space_pos + 1, colon_pos - space_pos - 1);
|
|
auto port = std::stoi(msg.substr(colon_pos + 1));
|
|
|
|
- return {slot, {host, port}};
|
|
+ return {static_cast<std::size_t>(slot), {host, port}};
|
|
} catch (const std::exception &e) {
|
|
throw ProtoError("Invalid ASK error message: " + msg);
|
|
}
|