summaryrefslogtreecommitdiff
path: root/ace/Time_Value.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Time_Value.inl')
-rw-r--r--ace/Time_Value.inl11
1 files changed, 0 insertions, 11 deletions
diff --git a/ace/Time_Value.inl b/ace/Time_Value.inl
index f139d5f7daa..8c907ce8b3f 100644
--- a/ace/Time_Value.inl
+++ b/ace/Time_Value.inl
@@ -120,17 +120,6 @@ ACE_Time_Value::msec (void) const
return this->tv_.tv_sec * 1000 + this->tv_.tv_usec / 1000;
}
-#if !defined (ACE_LACKS_LONGLONG_T)
-ACE_INLINE void
-ACE_Time_Value::msec (ACE_UINT64 &ms) const
-{
- // ACE_OS_TRACE ("ACE_Time_Value::msec");
- ms = this->tv_.tv_sec;
- ms *= 1000;
- ms += (this->tv_.tv_usec / 1000);
-}
-#endif /*ACE_LACKS_LONGLONG_T*/
-
// Converts from milli-seconds format into Time_Value format.
ACE_INLINE void