From 989f98c1a009fc14f024bb1d67c55486b9bfe220 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 8 Jun 2015 02:01:46 -0400 Subject: [PATCH] Cleared SourceForge reported issue where ThreadUserTimer was not exported --- hrtimer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hrtimer.h b/hrtimer.h index 858dbd22..d62ba49d 100644 --- a/hrtimer.h +++ b/hrtimer.h @@ -39,7 +39,7 @@ private: //! measure CPU time spent executing instructions of this thread (if supported by OS) /*! /note This only works correctly on Windows NT or later. On Unix it reports process time, and others wall clock time. */ -class ThreadUserTimer : public TimerBase +class CRYPTOPP_DLL ThreadUserTimer : public TimerBase { public: ThreadUserTimer(Unit unit = TimerBase::SECONDS, bool stuckAtZero = false) : TimerBase(unit, stuckAtZero) {}