From 3c65483498f0e39aceed62050a718f3edc68077a Mon Sep 17 00:00:00 2001 From: John Doe Date: Sat, 6 May 2023 20:30:44 +0200 Subject: fix -Worder warning --- src/Api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Api.cpp b/src/Api.cpp index 43a9dba..7bd9e64 100644 --- a/src/Api.cpp +++ b/src/Api.cpp @@ -3,7 +3,7 @@ namespace TgBot { Api::Api(std::string token, const HttpClient& httpClient, const std::string& url) - : _token(std::move(token)), _httpClient(httpClient), _tgTypeParser(), _url(url) { + : _httpClient(httpClient), _token(std::move(token)), _tgTypeParser(), _url(url) { } std::vector Api::getUpdates(std::int32_t offset, -- cgit v1.2.3