|
|
@@ -9182,18 +9182,20 @@ inline Result ClientImpl::Delete(const std::string &path,
|
|
|
progress);
|
|
|
}
|
|
|
|
|
|
-inline Result ClientImpl::Delete(const std::string &path, const Params ¶ms) {
|
|
|
+inline Result ClientImpl::Delete(const std::string &path,
|
|
|
+ const Params ¶ms) {
|
|
|
return Delete(path, Headers(), params);
|
|
|
}
|
|
|
|
|
|
-inline Result ClientImpl::Delete(const std::string &path, const Headers &headers,
|
|
|
- const Params ¶ms) {
|
|
|
+inline Result ClientImpl::Delete(const std::string &path,
|
|
|
+ const Headers &headers, const Params ¶ms) {
|
|
|
auto query = detail::params_to_query_str(params);
|
|
|
return Delete(path, headers, query, "application/x-www-form-urlencoded");
|
|
|
}
|
|
|
|
|
|
-inline Result ClientImpl::Delete(const std::string &path, const Headers &headers,
|
|
|
- const Params ¶ms, Progress progress) {
|
|
|
+inline Result ClientImpl::Delete(const std::string &path,
|
|
|
+ const Headers &headers, const Params ¶ms,
|
|
|
+ Progress progress) {
|
|
|
auto query = detail::params_to_query_str(params);
|
|
|
return Delete(path, headers, query, "application/x-www-form-urlencoded",
|
|
|
progress);
|