summaryrefslogtreecommitdiffstats
path: root/CryptoPP/hrtimer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CryptoPP/hrtimer.cpp')
-rw-r--r--CryptoPP/hrtimer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/CryptoPP/hrtimer.cpp b/CryptoPP/hrtimer.cpp
index 906ec4a06..6871a15dc 100644
--- a/CryptoPP/hrtimer.cpp
+++ b/CryptoPP/hrtimer.cpp
@@ -70,7 +70,6 @@ TimerWord Timer::GetCurrentTimerValue()
gettimeofday(&now, NULL);
return (TimerWord)now.tv_sec * 1000000 + now.tv_usec;
#else
- clock_t now;
return clock();
#endif
}