diff options
Diffstat (limited to 'cpp/include/IceUtil/Lock.h')
-rw-r--r-- | cpp/include/IceUtil/Lock.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/include/IceUtil/Lock.h b/cpp/include/IceUtil/Lock.h index 943a816d46c..f6e1277bd3d 100644 --- a/cpp/include/IceUtil/Lock.h +++ b/cpp/include/IceUtil/Lock.h @@ -21,7 +21,6 @@ namespace IceUtil // class Cond; - // LockT and TryLockT are the preferred construct to lock/tryLock/unlock // simple and recursive mutexes. You typically allocate them on the // stack to hold a lock on a mutex. @@ -68,7 +67,6 @@ public: _acquired = true; } - bool tryAcquire() const { if (_acquired) |