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 {