Fixup comment in unique_handle.hpp to reference curl_easy_cleanup rather than curl_free. (#3997)

This commit is contained in:
Ahson Khan 2022-10-05 13:19:41 -07:00 committed by GitHub
parent 895a1f9f2c
commit 0a888c6674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ namespace Azure { namespace Core { namespace _internal {
*
* template <> struct UniqueHandleHelper<CURL>
* {
* using type = BasicUniqueHandle<CURL, curl_free>;
* using type = BasicUniqueHandle<CURL, curl_easy_cleanup>;
* };
*/
// *** Given just T, map it to the corresponding FreeFunc