diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-03-25 19:17:26 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-03-26 10:17:08 -0400 |
commit | 06b58e9c7c349ce81504cf6ce2823082205ab0f7 (patch) | |
tree | e56a7389a28887ad11fcd80bcdf7e21cccd033ab /src/mongo/util/timer.h | |
parent | 05533d52a29589f54ec9ee582e770a5fdda552a5 (diff) | |
download | mongo-06b58e9c7c349ce81504cf6ce2823082205ab0f7.tar.gz |
SERVER-17736 Remove obsolete C++ driver symbol export miscellanea
Diffstat (limited to 'src/mongo/util/timer.h')
-rw-r--r-- | src/mongo/util/timer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/util/timer.h b/src/mongo/util/timer.h index 8ee85928f73..2e9c50ac829 100644 --- a/src/mongo/util/timer.h +++ b/src/mongo/util/timer.h @@ -29,7 +29,6 @@ #pragma once -#include "mongo/client/export_macros.h" namespace mongo { @@ -44,7 +43,7 @@ namespace mongo { * 2.5 years will be supported. Since a typical tick duration will be under 10 per nanosecond, * if not below 1 per nanosecond, this should not be an issue. */ - class MONGO_CLIENT_API Timer /*copyable*/ { + class Timer /*copyable*/ { public: static const long long millisPerSecond = 1000; static const long long microsPerSecond = 1000 * millisPerSecond; |