summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2018-07-04 19:27:20 +0300
committerEgor Pugin <egor.pugin@gmail.com>2018-07-04 19:27:20 +0300
commitac3e87822afb6065a82dfe547ecbc0c307a04147 (patch)
treeb1d3895de28ce746cf15e7378e1bd22c2fac2f0e /src/net
parentdf3898ed79dec253b7f013ed1a6c2f1f0e98cb40 (diff)
Remove string literal.
Diffstat (limited to 'src/net')
-rw-r--r--src/net/HttpClient.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/HttpClient.cpp b/src/net/HttpClient.cpp
index 479b72a..b61285c 100644
--- a/src/net/HttpClient.cpp
+++ b/src/net/HttpClient.cpp
@@ -32,7 +32,7 @@ using namespace boost::asio::ip;
namespace TgBot {
BoostHttpClient& BoostHttpClient::getInstance() {
- static BoostHttpClient result;
+ static BoostHttpClient result;
return result;
}
@@ -78,7 +78,7 @@ string BoostHttpClient::makeRequest(const Url& url, const vector<HttpReqArg>& ar
#else
char buff[1024];
#endif //TGBOT_CHANGE_READ_BUFFER_SIZE
-
+
boost::system::error_code error;
while (!error) {
size_t bytes = read(socket, buffer(buff), error);
@@ -138,7 +138,7 @@ string CurlHttpClient::makeRequest(const Url& url, const vector<HttpReqArg>& arg
curl_easy_cleanup(curl);
if (res != CURLE_OK)
- throw std::runtime_error("curl error: "s + curl_easy_strerror(res));
+ throw std::runtime_error(std::string("curl error: ") + curl_easy_strerror(res));
if (http_code != 200)
throw std::runtime_error("curl request returned with code = " + std::to_string(http_code));