This commit is contained in:
Sebastian Messmer 2018-09-18 03:19:36 -07:00
parent 4ed555b422
commit 5712f35d69
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ namespace cpputils {
throw std::runtime_error("Error calling WinHttpOpen. Error code: " + std::to_string(GetLastError()));
}
return cpputils::make_unique<_refWinHttpSession>(std::move(session_handle));
return cpputils::make_unique_ref<WinHttpSession>(std::move(session_handle));
}
}