aboutsummaryrefslogtreecommitdiff
path: root/dep/src/sockets/Lock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/src/sockets/Lock.cpp')
-rw-r--r--dep/src/sockets/Lock.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/dep/src/sockets/Lock.cpp b/dep/src/sockets/Lock.cpp
index 597ca30afc6..b75664cfbdc 100644
--- a/dep/src/sockets/Lock.cpp
+++ b/dep/src/sockets/Lock.cpp
@@ -34,21 +34,17 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
namespace SOCKETS_NAMESPACE {
#endif
-
Lock::Lock(Mutex& m) : m_mutex(m)
{
m_mutex.Lock();
}
-
Lock::~Lock()
{
m_mutex.Unlock();
}
-
-
#ifdef SOCKETS_NAMESPACE
}
#endif