]> git.saurik.com Git - wxWidgets.git/commitdiff
Temporary fix for VC++ compile breakage.
authorJulian Smart <julian@anthemion.co.uk>
Tue, 20 Apr 2004 22:12:06 +0000 (22:12 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 20 Apr 2004 22:12:06 +0000 (22:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26888 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/stopwatch.cpp

index 2db111c612f9c9615761a6b31d3b6185d078a534..ed4987fc09160338e8eecd8c835b740bf6beec8d 100644 (file)
@@ -193,6 +193,9 @@ long wxGetLocalTime()
 // Get UTC time as seconds since 00:00:00, Jan 1st 1970
 long wxGetUTCTime()
 {
+#ifdef _MSC_VER
+       unsigned
+#endif
     long timenow = 0;
     time(&timenow);
     return timenow;