From 86eb568c254dad4fb6a774c0dceb5ab697247380 Mon Sep 17 00:00:00 2001 From: Slavasil Date: Wed, 27 Nov 2024 00:29:02 +0300 Subject: [PATCH] make HttpRequestData_ constructor inline --- http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.h b/http.h index fec8ab9..a6c04f8 100644 --- a/http.h +++ b/http.h @@ -53,7 +53,7 @@ namespace http { CurlSocketData_ *socketData = nullptr; ResponseCallback callback; std::unique_ptr response; - HttpRequestData_(HttpClient *client) { + inline HttpRequestData_(HttpClient *client) { this->client = client; } };