value expansion to double
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19513 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -527,7 +527,7 @@ void wxThread::Sleep(unsigned long milliseconds)
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
YieldToAnyThread();
|
YieldToAnyThread();
|
||||||
} while( clock() - start < (milliseconds * CLOCKS_PER_SEC) / 1000 ) ;
|
} while( clock() - start < milliseconds / 1000.0 * CLOCKS_PER_SEC ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxThread::GetCPUCount()
|
int wxThread::GetCPUCount()
|
||||||
|
@@ -527,7 +527,7 @@ void wxThread::Sleep(unsigned long milliseconds)
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
YieldToAnyThread();
|
YieldToAnyThread();
|
||||||
} while( clock() - start < (milliseconds * CLOCKS_PER_SEC) / 1000 ) ;
|
} while( clock() - start < milliseconds / 1000.0 * CLOCKS_PER_SEC ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxThread::GetCPUCount()
|
int wxThread::GetCPUCount()
|
||||||
|
Reference in New Issue
Block a user