summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hrtimer.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/hrtimer.cpp b/hrtimer.cpp
index 38763fb..b29f745 100644
--- a/hrtimer.cpp
+++ b/hrtimer.cpp
@@ -23,7 +23,13 @@ double TimerBase::ConvertTo(word64 t, Unit unit)
static unsigned long unitsPerSecondTable[] = {1, 1000, 1000*1000, 1000*1000*1000};
assert(unit < sizeof(unitsPerSecondTable) / sizeof(unitsPerSecondTable[0]));
+#if defined(_MSC_VER) && (_MSC_VER < 1300)
+ // MSVC 6 workaround
+ return (double)(__int64)t * unitsPerSecondTable[unit] / (__int64)TicksPerSecond();
+#else
return (double)t * unitsPerSecondTable[unit] / TicksPerSecond();
+#endif
+
}
void TimerBase::StartTimer()