From f3600a55605bc8a252ed43019df9748cd5add0cc Mon Sep 17 00:00:00 2001 From: dwight Date: Mon, 11 Jul 2011 19:19:32 -0400 Subject: [PATCH] partial fix compile --- util/concurrency/mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/concurrency/mutex.h b/util/concurrency/mutex.h index 689eaa2a5dd..e46848bb7ea 100644 --- a/util/concurrency/mutex.h +++ b/util/concurrency/mutex.h @@ -249,8 +249,8 @@ namespace mongo { scoped_lock( SimpleMutex &m ) : _lk(m._m) { } }; - void lock() { _m.lock(); } - void unlock() { _m.unlock(); } + // void lock() { _m.lock(); } + //void unlock() { _m.unlock(); } }; #endif