summaryrefslogtreecommitdiff
path: root/ACE/ace/High_Res_Timer.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-05-24 07:59:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-05-24 07:59:51 +0000
commit332ca7fd22646863cc0ca01e30d68a9604690e42 (patch)
treed423691bbba152bed33790c3c556e8cce8c0b55c /ACE/ace/High_Res_Timer.cpp
parent1e965fe1635152729a0a994aa5d86b763df47799 (diff)
downloadATCD-332ca7fd22646863cc0ca01e30d68a9604690e42.tar.gz
Thu May 24 07:58:53 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/High_Res_Timer.h: * ace/config-win32-msvc.h: Documentation updates * ace/High_Res_Timer.inl: Layout changes * ace/High_Res_Timer.cpp: Use this
Diffstat (limited to 'ACE/ace/High_Res_Timer.cpp')
-rw-r--r--ACE/ace/High_Res_Timer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/High_Res_Timer.cpp b/ACE/ace/High_Res_Timer.cpp
index 343df20c630..f32cfd5c5d5 100644
--- a/ACE/ace/High_Res_Timer.cpp
+++ b/ACE/ace/High_Res_Timer.cpp
@@ -336,7 +336,7 @@ ACE_High_Res_Timer::reset (void)
void
ACE_High_Res_Timer::elapsed_time (ACE_Time_Value &tv) const
{
- hrtime_to_tv (tv,
+ this->hrtime_to_tv (tv,
ACE_High_Res_Timer::elapsed_hrtime (this->end_, this->start_));
}
@@ -373,7 +373,7 @@ ACE_High_Res_Timer::elapsed_time (struct timespec &elapsed_time) const
void
ACE_High_Res_Timer::elapsed_time_incr (ACE_Time_Value &tv) const
{
- hrtime_to_tv (tv, total_);
+ this->hrtime_to_tv (tv, total_);
}
void