Remove useless constructor

FossilOrigin-Name: fa8172d48f13c9baf816268d446c4f8e946fadfc080948d61ea895eb61435a37
This commit is contained in:
nekobit 2022-09-30 03:14:13 +00:00
parent ec5a2626b5
commit 948deab79f

View file

@ -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{},