返回值去除std::move

This commit is contained in:
xiongziliang
2020-09-21 14:32:56 +08:00
parent 06f1731bca
commit 416d21df36
11 changed files with 12 additions and 12 deletions

View File

@@ -78,7 +78,7 @@ static C get_http_header( const char *response_header[]){
}
break;
}
return std::move(header);
return header;
}
API_EXPORT void API_CALL mk_http_requester_set_body(mk_http_requester ctx, mk_http_body body){