瀏覽代碼

ERR: Removed ftime ambiguity created by poor C++ standard headers provided by Borland 5.5.

Brad King 22 年之前
父節點
當前提交
242f4f2fc8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/kwsys/SystemTools.cxx

+ 1 - 1
Source/kwsys/SystemTools.cxx

@@ -144,7 +144,7 @@ SystemTools::GetTime(void)
   {
 #if defined(HAVE_FTIME)
   struct TIMEB t;
-  FTIME(&t);
+  ::FTIME(&t);
   return (double)t.time + (double)t.millitm * (double)0.001;
 #else /* !HAVE_FTIME */
   time_t secs;