mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-10-04 21:00:53 +02:00
Handle all warnings on MSVC Win32
Summary: related to T13409 Reviewers: ivica Reviewed By: ivica Subscribers: miljen, iljazovic Differential Revision: https://repo.mireo.local/D27165
This commit is contained in:
@@ -60,7 +60,7 @@ public:
|
||||
|
||||
_owner._current_host++;
|
||||
|
||||
if (_owner._current_host + 1 > _owner._servers.size()) {
|
||||
if (_owner._current_host + 1 > static_cast<int>(_owner._servers.size())) {
|
||||
_owner._current_host = -1;
|
||||
return complete_post(asio::error::try_again, {}, {});
|
||||
}
|
||||
|
Reference in New Issue
Block a user