From be4e9161105f69fda4d6c9035a985622f1730c96 Mon Sep 17 00:00:00 2001 From: Dwight Date: Thu, 15 Apr 2010 19:17:26 -0400 Subject: [PATCH] compile --- util/concurrency/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/concurrency/list.h b/util/concurrency/list.h index c03493f2b66..f31748c98d4 100644 --- a/util/concurrency/list.h +++ b/util/concurrency/list.h @@ -46,7 +46,7 @@ public: T* head() const { return _head; } void push(T* t) { - boostlock lk(_m); + boost::mutex::scoped_lock lk(_m); t->_next = _head; _head = t; }