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:
Korina Šimičević
2024-01-02 16:01:56 +01:00
parent 794c72cb44
commit bf81ab5ee7
10 changed files with 41 additions and 31 deletions

View File

@@ -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, {}, {});
}