2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-09 11:32:12 +00:00

Thread: Fix typo on auto_ptr

[SVN r76345]
This commit is contained in:
Vicente J. Botet Escriba
2012-01-07 20:15:14 +00:00
parent 8affa33718
commit 32b3f3f569

View File

@@ -81,7 +81,7 @@ namespace boost
DWORD WINAPI ThreadProxy(LPVOID args)
{
autp_ptr<ThreadProxyData> data=reinterpret_cast<ThreadProxyData*>(args);
std::auto_ptr<ThreadProxyData> data(reinterpret_cast<ThreadProxyData*>(args));
DWORD ret=data->start_address_(data->arglist_);
return ret;
}