From d9bfeef2d5d10fbb7aad01ed9e6acef0483b5af6 Mon Sep 17 00:00:00 2001 From: Gareth Sylvester-Bradley <31761158+garethsb@users.noreply.github.com> Date: Thu, 26 May 2022 16:59:34 +0100 Subject: [PATCH] Use rather than to avoid pragma message: "The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated." No code change is necessary since those placeholders are not used, only the boost::asio::placeholders:: ones are. --- Release/src/http/client/http_client_asio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Release/src/http/client/http_client_asio.cpp b/Release/src/http/client/http_client_asio.cpp index 07bb4885bf..f3153b6dd4 100644 --- a/Release/src/http/client/http_client_asio.cpp +++ b/Release/src/http/client/http_client_asio.cpp @@ -30,7 +30,7 @@ #include #include #include -#include +#include #if defined(__clang__) #pragma clang diagnostic pop #endif