From 5dde63de12c1671f3908e2bd331ff2d0ae4e56e1 Mon Sep 17 00:00:00 2001 From: Aaron Date: Wed, 15 Apr 2009 15:23:47 -0400 Subject: [PATCH] fix compile warning, rename condition_variable -> condition to make old boost happy MINOR --- util/file_allocator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/file_allocator.h b/util/file_allocator.h index e81de1834a6..04b6a806556 100644 --- a/util/file_allocator.h +++ b/util/file_allocator.h @@ -108,7 +108,7 @@ namespace mongo { } mutable boost::mutex pendingMutex_; - mutable boost::condition_variable pendingUpdated_; + mutable boost::condition pendingUpdated_; list< string > pending_; mutable map< string, int > pendingSize_; @@ -187,4 +187,4 @@ namespace mongo { FileAllocator &theFileAllocator(); -} // namespace mongo \ No newline at end of file +} // namespace mongo