remove move from const (#2375)

This commit is contained in:
Victor Vazquez 2021-06-02 09:37:35 -07:00 committed by GitHub
parent dfd2933a66
commit 9fd5806c14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1380,7 +1380,7 @@ std::unique_ptr<CurlNetworkConnection> CurlConnectionPool::ExtractOrCreateCurlCo
+ std::string(curl_easy_strerror(performResult)));
}
return std::make_unique<CurlConnection>(newHandle, std::move(connectionKey));
return std::make_unique<CurlConnection>(newHandle, connectionKey);
}
// Move the connection back to the connection pool. Push it to the front so it becomes the