summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/AbstractMutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/IceUtil/AbstractMutex.h')
-rw-r--r--cpp/include/IceUtil/AbstractMutex.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/include/IceUtil/AbstractMutex.h b/cpp/include/IceUtil/AbstractMutex.h
index 8b757cfa771..c0805160a1e 100644
--- a/cpp/include/IceUtil/AbstractMutex.h
+++ b/cpp/include/IceUtil/AbstractMutex.h
@@ -35,10 +35,8 @@ class AbstractMutexI : public AbstractMutex, public T
{
public:
-#ifndef __BCPLUSPLUS__
typedef LockT<AbstractMutexI> Lock;
typedef TryLockT<AbstractMutexI> TryLock;
-#endif
virtual void lock() const
{
@@ -64,10 +62,8 @@ class AbstractMutexReadI : public AbstractMutex, public T
{
public:
-#ifndef __BCPLUSPLUS__
typedef LockT<AbstractMutexReadI> Lock;
typedef TryLockT<AbstractMutexReadI> TryLock;
-#endif
virtual void lock() const
{
@@ -93,10 +89,8 @@ class AbstractMutexWriteI : public AbstractMutex, public T
{
public:
-#ifndef __BCPLUSPLUS__
typedef LockT<AbstractMutexWriteI> Lock;
typedef TryLockT<AbstractMutexWriteI> TryLock;
-#endif
virtual void lock() const
{