summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 00:43:09 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 00:43:09 +0000
commita33cc753951d6b9af8a620a7717dcc4b08849f19 (patch)
tree93ba8d70183b8c18b76dab075c4b7ccd1e967824
parent6e12a6496061c193914d731029472f4747dc1986 (diff)
downloadcryptopp-a33cc753951d6b9af8a620a7717dcc4b08849f19.tar.gz
Cleared SourceForge reported issue where ThreadUserTimer was not exported
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@549 57ff6487-cd31-0410-9ec3-f628ee90f5f0
-rw-r--r--hrtimer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hrtimer.h b/hrtimer.h
index 858dbd2..d62ba49 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) {}