From 43237fd6c42b838d9e00ddcf46f19f8423fc081e Mon Sep 17 00:00:00 2001 From: Glenn Date: Wed, 21 Feb 2024 13:27:25 -0500 Subject: [PATCH] Removed legacy mutex naming in template --- src/osgEarth/Containers | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/osgEarth/Containers b/src/osgEarth/Containers index 8330507597..3882914bd9 100644 --- a/src/osgEarth/Containers +++ b/src/osgEarth/Containers @@ -567,7 +567,7 @@ namespace osgEarth { namespace Util template struct PerThread : public std::mutex { - PerThread() : std::mutex() { } + PerThread() { } T& get() { std::lock_guard lock(*this); @@ -632,7 +632,6 @@ namespace osgEarth { namespace Util struct PerObjectFastMap { PerObjectFastMap() { } - PerObjectFastMap(const std::string& name) : _mutex(name) { } bool threadsafe = true; struct Functor {