Fix for using std streams when std:: conflicts with ::

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-04-12 21:08:04 +00:00
parent 16549a8723
commit 29468083f4

View File

@ -286,7 +286,7 @@ wxLongLong wxGetLocalTimeMillis()
// ftime() is void and not int in some mingw32 headers, so don't
// test the return code (well, it shouldn't fail anyhow...)
(void)ftime(&tp);
(void)::ftime(&tp);
val *= tp.time;
return (val + tp.millitm);
#elif defined(__WXMAC__)