From ac3e87822afb6065a82dfe547ecbc0c307a04147 Mon Sep 17 00:00:00 2001 From: Egor Pugin Date: Wed, 4 Jul 2018 19:27:20 +0300 Subject: Remove string literal. --- include/tgbot/net/HttpClient.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/tgbot/net') diff --git a/include/tgbot/net/HttpClient.h b/include/tgbot/net/HttpClient.h index 1375785..4378623 100644 --- a/include/tgbot/net/HttpClient.h +++ b/include/tgbot/net/HttpClient.h @@ -39,7 +39,7 @@ namespace TgBot { /** * @brief This class makes http requests. - * + * * @ingroup net */ class HttpClient { @@ -67,18 +67,18 @@ public: /** * @brief Returns instance which lives during all application lifetime. */ - static BoostHttpClient& getInstance(); + static BoostHttpClient& getInstance(); /** * @brief Sends a request to the url. - * + * * If there's no args specified, a GET request will be sent, otherwise a POST request will be sent. * If at least 1 arg is marked as file, the content type of a request will be multipart/form-data, otherwise it will be application/x-www-form-urlencoded. */ - std::string makeRequest(const Url& url, const std::vector& args) const override; + std::string makeRequest(const Url& url, const std::vector& args) const override; private: - mutable boost::asio::io_service _ioService; + mutable boost::asio::io_service _ioService; }; #ifdef HAVE_CURL -- cgit v1.2.3