summaryrefslogtreecommitdiff
path: root/src/mongo/util/queue.h
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-07-14 18:07:40 -0400
committerEliot Horowitz <eliot@10gen.com>2012-07-14 18:07:40 -0400
commit11513316d1bdc9ad9e8a19746fb7a04c15f78b3b (patch)
treefe4ff886ae6c7dee4c32b304881c0a2e2325cb2d /src/mongo/util/queue.h
parent5665ee8b85d600c0720cb1e12774f5a660afa456 (diff)
downloadmongo-11513316d1bdc9ad9e8a19746fb7a04c15f78b3b.tar.gz
SERVER-6449 - decide which BOSOT::TIME_UTC variant to use at compile time
Diffstat (limited to 'src/mongo/util/queue.h')
-rw-r--r--src/mongo/util/queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/queue.h b/src/mongo/util/queue.h
index 581eb722e61..7c8ba288114 100644
--- a/src/mongo/util/queue.h
+++ b/src/mongo/util/queue.h
@@ -121,7 +121,7 @@ namespace mongo {
Timer timer;
boost::xtime xt;
- boost::xtime_get(&xt, boost::TIME_UTC_);
+ boost::xtime_get(&xt, MONGO_BOOST_TIME_UTC);
xt.sec += maxSecondsToWait;
scoped_lock l( _lock );
@@ -143,7 +143,7 @@ namespace mongo {
Timer timer;
boost::xtime xt;
- boost::xtime_get(&xt, boost::TIME_UTC_);
+ boost::xtime_get(&xt, MONGO_BOOST_TIME_UTC);
xt.sec += maxSecondsToWait;
scoped_lock l( _lock );