From 30f5f88eb388602f744c57af72c6159e172e4546 Mon Sep 17 00:00:00 2001 From: Don BURNS Date: Mon, 29 Nov 2004 05:47:16 +0000 Subject: [PATCH] Small clean up of commented code --- src/osgDB/ReentrantMutex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgDB/ReentrantMutex.cpp b/src/osgDB/ReentrantMutex.cpp index a98745d54..45d0109e7 100644 --- a/src/osgDB/ReentrantMutex.cpp +++ b/src/osgDB/ReentrantMutex.cpp @@ -36,7 +36,7 @@ int ReentrantMutex::lock() } else { - int result = /*OpenThreads::*/Mutex::lock(); + int result = Mutex::lock(); if (result==0) { _threadHoldingMutex = OpenThreads::Thread::CurrentThread();