Use move to initialize the body buffer (#150)

This commit is contained in:
JinmingHu 2020-06-04 01:13:26 +08:00 коммит произвёл GitHub
Родитель 711fe5f8c6
Коммит 502d3f15a9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -211,8 +211,8 @@ namespace Azure { namespace Core { namespace Http {
{
}
Request(HttpMethod httpMethod, std::string const& url, std::vector<uint8_t> const& bodyBuffer)
: Request(httpMethod, url, BodyStream::null, bodyBuffer)
Request(HttpMethod httpMethod, std::string const& url, std::vector<uint8_t> bodyBuffer)
: Request(httpMethod, url, BodyStream::null, std::move(bodyBuffer))
{
}