From 948deab79f45c01a466b8c3637518bbee04477a4 Mon Sep 17 00:00:00 2001 From: nekobit Date: Fri, 30 Sep 2022 03:14:13 +0000 Subject: [PATCH] Remove useless constructor FossilOrigin-Name: fa8172d48f13c9baf816268d446c4f8e946fadfc080948d61ea895eb61435a37 --- src/http/request.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/http/request.cpp b/src/http/request.cpp index 55df7f0..e984712 100644 --- a/src/http/request.cpp +++ b/src/http/request.cpp @@ -21,12 +21,6 @@ using namespace HTTP; -Request::Request(Type type, const std::string url, RequestCallback_t func) - : type{type}, - callback{func}, - url{std::move(url)} -{} - Request::Request(Type type, const std::string url) : type{type}, callback{},