summaryrefslogtreecommitdiff
path: root/configmgr/source/lock.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/lock.cxx')
-rw-r--r--configmgr/source/lock.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/lock.cxx b/configmgr/source/lock.cxx
index 7a20135f95d3..66a2be9eeca6 100644
--- a/configmgr/source/lock.cxx
+++ b/configmgr/source/lock.cxx
@@ -25,9 +25,9 @@
namespace configmgr {
-boost::shared_ptr<osl::Mutex> lock()
+std::shared_ptr<osl::Mutex> lock()
{
- static boost::shared_ptr<osl::Mutex> theLock;
+ static std::shared_ptr<osl::Mutex> theLock;
if (!theLock.get())
theLock.reset(new osl::Mutex);
return theLock;