summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-12-29 18:14:26 (GMT)
committerBrad King <brad.king@kitware.com>2003-12-29 18:14:26 (GMT)
commit242f4f2fc843a8cf0419ff3154a3d1c7cfcdaf27 (patch)
tree0e8dfb8f8cf60fc1b29bf6623cfde43bd5b98332 /Source
parent2f2596c213c5be33ec653ed2d4662dc3bbafc60f (diff)
downloadCMake-242f4f2fc843a8cf0419ff3154a3d1c7cfcdaf27.zip
CMake-242f4f2fc843a8cf0419ff3154a3d1c7cfcdaf27.tar.gz
CMake-242f4f2fc843a8cf0419ff3154a3d1c7cfcdaf27.tar.bz2
ERR: Removed ftime ambiguity created by poor C++ standard headers provided by Borland 5.5.
Diffstat (limited to 'Source')
-rw-r--r--Source/kwsys/SystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index 8edc134..4e083c3 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/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;