From b12e713d3e2b9d39788695ce9cef1e70c1c94914 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Thu, 9 Feb 2012 20:06:36 +0100 Subject: [PATCH] supernova: c_string - generate lock via boost headers Signed-off-by: Tim Blechmann --- server/supernova/utilities/named_hash_entry.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/supernova/utilities/named_hash_entry.hpp b/server/supernova/utilities/named_hash_entry.hpp index 668c15e2a..7278db7b1 100644 --- a/server/supernova/utilities/named_hash_entry.hpp +++ b/server/supernova/utilities/named_hash_entry.hpp @@ -141,7 +141,7 @@ public: if (lookup_result.second) return *lookup_result.first; - nonrecursive_rw_mutex::unique_lock lock(mutex); + boost::unique_lock lock(mutex); lookup_result = symbol_lookup(str); if (lookup_result.second) return *lookup_result.first; -- 2.11.4.GIT